| author | paulson <lp15@cam.ac.uk> | 
| Thu, 18 Jul 2019 14:08:28 +0100 | |
| changeset 70378 | ebd108578ab1 | 
| parent 70138 | bd42cc1e10d0 | 
| child 70620 | f95193669ad7 | 
| permissions | -rw-r--r-- | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1 | (* Title: HOL/Analysis/Starlike.thy | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2 | Author: L C Paulson, University of Cambridge | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3 | Author: Robert Himmelmann, TU Muenchen | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4 | Author: Bogdan Grechuk, University of Edinburgh | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5 | Author: Armin Heller, TU Muenchen | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6 | Author: Johannes Hoelzl, TU Muenchen | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7 | *) | 
| 69676 | 8 | chapter \<open>Unsorted\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 9 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 10 | theory Starlike | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 11 | imports Convex_Euclidean_Space Abstract_Limits | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 12 | begin | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 13 | |
| 69676 | 14 | section \<open>Line Segments\<close> | 
| 15 | ||
| 67685 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 16 | subsection \<open>Midpoint\<close> | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 17 | |
| 70136 | 18 | definition\<^marker>\<open>tag important\<close> midpoint :: "'a::real_vector \<Rightarrow> 'a \<Rightarrow> 'a" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 19 | where "midpoint a b = (inverse (2::real)) *\<^sub>R (a + b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 20 | |
| 67685 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 21 | lemma midpoint_idem [simp]: "midpoint x x = x" | 
| 68056 | 22 | unfolding midpoint_def by simp | 
| 67685 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 23 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 24 | lemma midpoint_sym: "midpoint a b = midpoint b a" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 25 | unfolding midpoint_def by (auto simp add: scaleR_right_distrib) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 26 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 27 | lemma midpoint_eq_iff: "midpoint a b = c \<longleftrightarrow> a + b = c + c" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 28 | proof - | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 29 | have "midpoint a b = c \<longleftrightarrow> scaleR 2 (midpoint a b) = scaleR 2 c" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 30 | by simp | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 31 | then show ?thesis | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 32 | unfolding midpoint_def scaleR_2 [symmetric] by simp | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 33 | qed | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 34 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 35 | lemma | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 36 | fixes a::real | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 37 | assumes "a \<le> b" shows ge_midpoint_1: "a \<le> midpoint a b" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 38 | and le_midpoint_1: "midpoint a b \<le> b" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 39 | by (simp_all add: midpoint_def assms) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 40 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 41 | lemma dist_midpoint: | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 42 | fixes a b :: "'a::real_normed_vector" shows | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 43 | "dist a (midpoint a b) = (dist a b) / 2" (is ?t1) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 44 | "dist b (midpoint a b) = (dist a b) / 2" (is ?t2) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 45 | "dist (midpoint a b) a = (dist a b) / 2" (is ?t3) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 46 | "dist (midpoint a b) b = (dist a b) / 2" (is ?t4) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 47 | proof - | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 48 | have *: "\<And>x y::'a. 2 *\<^sub>R x = - y \<Longrightarrow> norm x = (norm y) / 2" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 49 | unfolding equation_minus_iff by auto | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 50 | have **: "\<And>x y::'a. 2 *\<^sub>R x = y \<Longrightarrow> norm x = (norm y) / 2" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 51 | by auto | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 52 | note scaleR_right_distrib [simp] | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 53 | show ?t1 | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 54 | unfolding midpoint_def dist_norm | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 55 | apply (rule **) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 56 | apply (simp add: scaleR_right_diff_distrib) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 57 | apply (simp add: scaleR_2) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 58 | done | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 59 | show ?t2 | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 60 | unfolding midpoint_def dist_norm | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 61 | apply (rule *) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 62 | apply (simp add: scaleR_right_diff_distrib) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 63 | apply (simp add: scaleR_2) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 64 | done | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 65 | show ?t3 | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 66 | unfolding midpoint_def dist_norm | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 67 | apply (rule *) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 68 | apply (simp add: scaleR_right_diff_distrib) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 69 | apply (simp add: scaleR_2) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 70 | done | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 71 | show ?t4 | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 72 | unfolding midpoint_def dist_norm | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 73 | apply (rule **) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 74 | apply (simp add: scaleR_right_diff_distrib) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 75 | apply (simp add: scaleR_2) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 76 | done | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 77 | qed | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 78 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 79 | lemma midpoint_eq_endpoint [simp]: | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 80 | "midpoint a b = a \<longleftrightarrow> a = b" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 81 | "midpoint a b = b \<longleftrightarrow> a = b" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 82 | unfolding midpoint_eq_iff by auto | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 83 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 84 | lemma midpoint_plus_self [simp]: "midpoint a b + midpoint a b = a + b" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 85 | using midpoint_eq_iff by metis | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 86 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 87 | lemma midpoint_linear_image: | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 88 | "linear f \<Longrightarrow> midpoint(f a)(f b) = f(midpoint a b)" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 89 | by (simp add: linear_iff midpoint_def) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 90 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 91 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 92 | subsection \<open>Line segments\<close> | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 93 | |
| 70136 | 94 | definition\<^marker>\<open>tag important\<close> closed_segment :: "'a::real_vector \<Rightarrow> 'a \<Rightarrow> 'a set" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 95 |   where "closed_segment a b = {(1 - u) *\<^sub>R a + u *\<^sub>R b | u::real. 0 \<le> u \<and> u \<le> 1}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 96 | |
| 70136 | 97 | definition\<^marker>\<open>tag important\<close> open_segment :: "'a::real_vector \<Rightarrow> 'a \<Rightarrow> 'a set" where | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 98 |   "open_segment a b \<equiv> closed_segment a b - {a,b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 99 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 100 | lemmas segment = open_segment_def closed_segment_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 101 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 102 | lemma in_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 103 | "x \<in> closed_segment a b \<longleftrightarrow> (\<exists>u. 0 \<le> u \<and> u \<le> 1 \<and> x = (1 - u) *\<^sub>R a + u *\<^sub>R b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 104 | "x \<in> open_segment a b \<longleftrightarrow> a \<noteq> b \<and> (\<exists>u. 0 < u \<and> u < 1 \<and> x = (1 - u) *\<^sub>R a + u *\<^sub>R b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 105 | using less_eq_real_def by (auto simp: segment algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 106 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 107 | lemma closed_segment_linear_image: | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 108 | "closed_segment (f a) (f b) = f ` (closed_segment a b)" if "linear f" | 
| 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 109 | proof - | 
| 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 110 | interpret linear f by fact | 
| 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 111 | show ?thesis | 
| 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 112 | by (force simp add: in_segment add scale) | 
| 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 113 | qed | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 114 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 115 | lemma open_segment_linear_image: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 116 | "\<lbrakk>linear f; inj f\<rbrakk> \<Longrightarrow> open_segment (f a) (f b) = f ` (open_segment a b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 117 | by (force simp: open_segment_def closed_segment_linear_image inj_on_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 118 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 119 | lemma closed_segment_translation: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 120 | "closed_segment (c + a) (c + b) = image (\<lambda>x. c + x) (closed_segment a b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 121 | apply safe | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 122 | apply (rule_tac x="x-c" in image_eqI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 123 | apply (auto simp: in_segment algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 124 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 125 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 126 | lemma open_segment_translation: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 127 | "open_segment (c + a) (c + b) = image (\<lambda>x. c + x) (open_segment a b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 128 | by (simp add: open_segment_def closed_segment_translation translation_diff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 129 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 130 | lemma closed_segment_of_real: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 131 | "closed_segment (of_real x) (of_real y) = of_real ` closed_segment x y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 132 | apply (auto simp: image_iff in_segment scaleR_conv_of_real) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 133 | apply (rule_tac x="(1-u)*x + u*y" in bexI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 134 | apply (auto simp: in_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 135 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 136 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 137 | lemma open_segment_of_real: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 138 | "open_segment (of_real x) (of_real y) = of_real ` open_segment x y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 139 | apply (auto simp: image_iff in_segment scaleR_conv_of_real) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 140 | apply (rule_tac x="(1-u)*x + u*y" in bexI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 141 | apply (auto simp: in_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 142 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 143 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 144 | lemma closed_segment_Reals: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 145 | "\<lbrakk>x \<in> Reals; y \<in> Reals\<rbrakk> \<Longrightarrow> closed_segment x y = of_real ` closed_segment (Re x) (Re y)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 146 | by (metis closed_segment_of_real of_real_Re) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 147 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 148 | lemma open_segment_Reals: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 149 | "\<lbrakk>x \<in> Reals; y \<in> Reals\<rbrakk> \<Longrightarrow> open_segment x y = of_real ` open_segment (Re x) (Re y)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 150 | by (metis open_segment_of_real of_real_Re) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 151 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 152 | lemma open_segment_PairD: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 153 | "(x, x') \<in> open_segment (a, a') (b, b') | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 154 | \<Longrightarrow> (x \<in> open_segment a b \<or> a = b) \<and> (x' \<in> open_segment a' b' \<or> a' = b')" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 155 | by (auto simp: in_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 156 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 157 | lemma closed_segment_PairD: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 158 | "(x, x') \<in> closed_segment (a, a') (b, b') \<Longrightarrow> x \<in> closed_segment a b \<and> x' \<in> closed_segment a' b'" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 159 | by (auto simp: closed_segment_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 160 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 161 | lemma closed_segment_translation_eq [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 162 | "d + x \<in> closed_segment (d + a) (d + b) \<longleftrightarrow> x \<in> closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 163 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 164 | have *: "\<And>d x a b. x \<in> closed_segment a b \<Longrightarrow> d + x \<in> closed_segment (d + a) (d + b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 165 | apply (simp add: closed_segment_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 166 | apply (erule ex_forward) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 167 | apply (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 168 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 169 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 170 | using * [where d = "-d"] * | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 171 | by (fastforce simp add:) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 172 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 173 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 174 | lemma open_segment_translation_eq [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 175 | "d + x \<in> open_segment (d + a) (d + b) \<longleftrightarrow> x \<in> open_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 176 | by (simp add: open_segment_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 177 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 178 | lemma of_real_closed_segment [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 179 | "of_real x \<in> closed_segment (of_real a) (of_real b) \<longleftrightarrow> x \<in> closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 180 | apply (auto simp: in_segment scaleR_conv_of_real elim!: ex_forward) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 181 | using of_real_eq_iff by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 182 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 183 | lemma of_real_open_segment [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 184 | "of_real x \<in> open_segment (of_real a) (of_real b) \<longleftrightarrow> x \<in> open_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 185 | apply (auto simp: in_segment scaleR_conv_of_real elim!: ex_forward del: exE) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 186 | using of_real_eq_iff by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 187 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 188 | lemma convex_contains_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 189 | "convex S \<longleftrightarrow> (\<forall>a\<in>S. \<forall>b\<in>S. closed_segment a b \<subseteq> S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 190 | unfolding convex_alt closed_segment_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 191 | |
| 68465 
e699ca8e22b7
New material in support of quaternions
 paulson <lp15@cam.ac.uk> parents: 
68077diff
changeset | 192 | lemma closed_segment_in_Reals: | 
| 
e699ca8e22b7
New material in support of quaternions
 paulson <lp15@cam.ac.uk> parents: 
68077diff
changeset | 193 | "\<lbrakk>x \<in> closed_segment a b; a \<in> Reals; b \<in> Reals\<rbrakk> \<Longrightarrow> x \<in> Reals" | 
| 
e699ca8e22b7
New material in support of quaternions
 paulson <lp15@cam.ac.uk> parents: 
68077diff
changeset | 194 | by (meson subsetD convex_Reals convex_contains_segment) | 
| 
e699ca8e22b7
New material in support of quaternions
 paulson <lp15@cam.ac.uk> parents: 
68077diff
changeset | 195 | |
| 
e699ca8e22b7
New material in support of quaternions
 paulson <lp15@cam.ac.uk> parents: 
68077diff
changeset | 196 | lemma open_segment_in_Reals: | 
| 
e699ca8e22b7
New material in support of quaternions
 paulson <lp15@cam.ac.uk> parents: 
68077diff
changeset | 197 | "\<lbrakk>x \<in> open_segment a b; a \<in> Reals; b \<in> Reals\<rbrakk> \<Longrightarrow> x \<in> Reals" | 
| 
e699ca8e22b7
New material in support of quaternions
 paulson <lp15@cam.ac.uk> parents: 
68077diff
changeset | 198 | by (metis Diff_iff closed_segment_in_Reals open_segment_def) | 
| 
e699ca8e22b7
New material in support of quaternions
 paulson <lp15@cam.ac.uk> parents: 
68077diff
changeset | 199 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 200 | lemma closed_segment_subset: "\<lbrakk>x \<in> S; y \<in> S; convex S\<rbrakk> \<Longrightarrow> closed_segment x y \<subseteq> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 201 | by (simp add: convex_contains_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 202 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 203 | lemma closed_segment_subset_convex_hull: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 204 | "\<lbrakk>x \<in> convex hull S; y \<in> convex hull S\<rbrakk> \<Longrightarrow> closed_segment x y \<subseteq> convex hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 205 | using convex_contains_segment by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 206 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 207 | lemma segment_convex_hull: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 208 |   "closed_segment a b = convex hull {a,b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 209 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 210 |   have *: "\<And>x. {x} \<noteq> {}" by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 211 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 212 | unfolding segment convex_hull_insert[OF *] convex_hull_singleton | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 213 | by (safe; rule_tac x="1 - u" in exI; force) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 214 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 215 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 216 | lemma open_closed_segment: "u \<in> open_segment w z \<Longrightarrow> u \<in> closed_segment w z" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 217 | by (auto simp add: closed_segment_def open_segment_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 218 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 219 | lemma segment_open_subset_closed: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 220 | "open_segment a b \<subseteq> closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 221 | by (auto simp: closed_segment_def open_segment_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 222 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 223 | lemma bounded_closed_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 224 | fixes a :: "'a::euclidean_space" shows "bounded (closed_segment a b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 225 | by (simp add: segment_convex_hull compact_convex_hull compact_imp_bounded) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 226 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 227 | lemma bounded_open_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 228 | fixes a :: "'a::euclidean_space" shows "bounded (open_segment a b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 229 | by (rule bounded_subset [OF bounded_closed_segment segment_open_subset_closed]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 230 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 231 | lemmas bounded_segment = bounded_closed_segment open_closed_segment | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 232 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 233 | lemma ends_in_segment [iff]: "a \<in> closed_segment a b" "b \<in> closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 234 | unfolding segment_convex_hull | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 235 | by (auto intro!: hull_subset[unfolded subset_eq, rule_format]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 236 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 237 | lemma eventually_closed_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 238 | fixes x0::"'a::real_normed_vector" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 239 | assumes "open X0" "x0 \<in> X0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 240 | shows "\<forall>\<^sub>F x in at x0 within U. closed_segment x0 x \<subseteq> X0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 241 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 242 | from openE[OF assms] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 243 | obtain e where e: "0 < e" "ball x0 e \<subseteq> X0" . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 244 | then have "\<forall>\<^sub>F x in at x0 within U. x \<in> ball x0 e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 245 | by (auto simp: dist_commute eventually_at) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 246 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 247 | proof eventually_elim | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 248 | case (elim x) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 249 | have "x0 \<in> ball x0 e" using \<open>e > 0\<close> by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 250 | from convex_ball[unfolded convex_contains_segment, rule_format, OF this elim] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 251 | have "closed_segment x0 x \<subseteq> ball x0 e" . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 252 | also note \<open>\<dots> \<subseteq> X0\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 253 | finally show ?case . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 254 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 255 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 256 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 257 | lemma segment_furthest_le: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 258 | fixes a b x y :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 259 | assumes "x \<in> closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 260 | shows "norm (y - x) \<le> norm (y - a) \<or> norm (y - x) \<le> norm (y - b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 261 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 262 |   obtain z where "z \<in> {a, b}" "norm (x - y) \<le> norm (z - y)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 263 |     using simplex_furthest_le[of "{a, b}" y]
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 264 | using assms[unfolded segment_convex_hull] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 265 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 266 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 267 | by (auto simp add:norm_minus_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 268 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 269 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 270 | lemma closed_segment_commute: "closed_segment a b = closed_segment b a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 271 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 272 |   have "{a, b} = {b, a}" by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 273 | thus ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 274 | by (simp add: segment_convex_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 275 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 276 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 277 | lemma segment_bound1: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 278 | assumes "x \<in> closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 279 | shows "norm (x - a) \<le> norm (b - a)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 280 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 281 | obtain u where "x = (1 - u) *\<^sub>R a + u *\<^sub>R b" "0 \<le> u" "u \<le> 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 282 | using assms by (auto simp add: closed_segment_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 283 | then show "norm (x - a) \<le> norm (b - a)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 284 | apply clarify | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 285 | apply (auto simp: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 286 | apply (simp add: scaleR_diff_right [symmetric] mult_left_le_one_le) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 287 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 288 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 289 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 290 | lemma segment_bound: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 291 | assumes "x \<in> closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 292 | shows "norm (x - a) \<le> norm (b - a)" "norm (x - b) \<le> norm (b - a)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 293 | apply (simp add: assms segment_bound1) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 294 | by (metis assms closed_segment_commute dist_commute dist_norm segment_bound1) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 295 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 296 | lemma open_segment_commute: "open_segment a b = open_segment b a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 297 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 298 |   have "{a, b} = {b, a}" by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 299 | thus ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 300 | by (simp add: closed_segment_commute open_segment_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 301 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 302 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 303 | lemma closed_segment_idem [simp]: "closed_segment a a = {a}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 304 | unfolding segment by (auto simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 305 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 306 | lemma open_segment_idem [simp]: "open_segment a a = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 307 | by (simp add: open_segment_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 308 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 309 | lemma closed_segment_eq_open: "closed_segment a b = open_segment a b \<union> {a,b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 310 | using open_segment_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 311 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 312 | lemma convex_contains_open_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 313 | "convex s \<longleftrightarrow> (\<forall>a\<in>s. \<forall>b\<in>s. open_segment a b \<subseteq> s)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 314 | by (simp add: convex_contains_segment closed_segment_eq_open) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 315 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 316 | lemma closed_segment_eq_real_ivl: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 317 | fixes a b::real | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 318 |   shows "closed_segment a b = (if a \<le> b then {a .. b} else {b .. a})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 319 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 320 |   have "b \<le> a \<Longrightarrow> closed_segment b a = {b .. a}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 321 |     and "a \<le> b \<Longrightarrow> closed_segment a b = {a .. b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 322 | by (auto simp: convex_hull_eq_real_cbox segment_convex_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 323 | thus ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 324 | by (auto simp: closed_segment_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 325 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 326 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 327 | lemma open_segment_eq_real_ivl: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 328 | fixes a b::real | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 329 |   shows "open_segment a b = (if a \<le> b then {a<..<b} else {b<..<a})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 330 | by (auto simp: closed_segment_eq_real_ivl open_segment_def split: if_split_asm) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 331 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 332 | lemma closed_segment_real_eq: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 333 |   fixes u::real shows "closed_segment u v = (\<lambda>x. (v - u) * x + u) ` {0..1}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 334 | by (simp add: add.commute [of u] image_affinity_atLeastAtMost [where c=u] closed_segment_eq_real_ivl) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 335 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 336 | lemma dist_in_closed_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 337 | fixes a :: "'a :: euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 338 | assumes "x \<in> closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 339 | shows "dist x a \<le> dist a b \<and> dist x b \<le> dist a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 340 | proof (intro conjI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 341 | obtain u where u: "0 \<le> u" "u \<le> 1" and x: "x = (1 - u) *\<^sub>R a + u *\<^sub>R b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 342 | using assms by (force simp: in_segment algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 343 | have "dist x a = u * dist a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 344 | apply (simp add: dist_norm algebra_simps x) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 345 | by (metis \<open>0 \<le> u\<close> abs_of_nonneg norm_minus_commute norm_scaleR real_vector.scale_right_diff_distrib) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 346 | also have "... \<le> dist a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 347 | by (simp add: mult_left_le_one_le u) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 348 | finally show "dist x a \<le> dist a b" . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 349 | have "dist x b = norm ((1-u) *\<^sub>R a - (1-u) *\<^sub>R b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 350 | by (simp add: dist_norm algebra_simps x) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 351 | also have "... = (1-u) * dist a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 352 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 353 | have "norm ((1 - 1 * u) *\<^sub>R (a - b)) = (1 - 1 * u) * norm (a - b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 354 | using \<open>u \<le> 1\<close> by force | 
| 67685 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 355 | then show ?thesis | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 356 | by (simp add: dist_norm real_vector.scale_right_diff_distrib) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 357 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 358 | also have "... \<le> dist a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 359 | by (simp add: mult_left_le_one_le u) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 360 | finally show "dist x b \<le> dist a b" . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 361 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 362 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 363 | lemma dist_in_open_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 364 | fixes a :: "'a :: euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 365 | assumes "x \<in> open_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 366 | shows "dist x a < dist a b \<and> dist x b < dist a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 367 | proof (intro conjI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 368 | obtain u where u: "0 < u" "u < 1" and x: "x = (1 - u) *\<^sub>R a + u *\<^sub>R b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 369 | using assms by (force simp: in_segment algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 370 | have "dist x a = u * dist a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 371 | apply (simp add: dist_norm algebra_simps x) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 372 | by (metis abs_of_nonneg less_eq_real_def norm_minus_commute norm_scaleR real_vector.scale_right_diff_distrib \<open>0 < u\<close>) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 373 | also have *: "... < dist a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 374 | by (metis (no_types) assms dist_eq_0_iff dist_not_less_zero in_segment(2) linorder_neqE_linordered_idom mult.left_neutral real_mult_less_iff1 \<open>u < 1\<close>) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 375 | finally show "dist x a < dist a b" . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 376 | have ab_ne0: "dist a b \<noteq> 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 377 | using * by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 378 | have "dist x b = norm ((1-u) *\<^sub>R a - (1-u) *\<^sub>R b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 379 | by (simp add: dist_norm algebra_simps x) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 380 | also have "... = (1-u) * dist a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 381 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 382 | have "norm ((1 - 1 * u) *\<^sub>R (a - b)) = (1 - 1 * u) * norm (a - b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 383 | using \<open>u < 1\<close> by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 384 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 385 | by (simp add: dist_norm real_vector.scale_right_diff_distrib) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 386 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 387 | also have "... < dist a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 388 | using ab_ne0 \<open>0 < u\<close> by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 389 | finally show "dist x b < dist a b" . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 390 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 391 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 392 | lemma dist_decreases_open_segment_0: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 393 | fixes x :: "'a :: euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 394 | assumes "x \<in> open_segment 0 b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 395 | shows "dist c x < dist c 0 \<or> dist c x < dist c b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 396 | proof (rule ccontr, clarsimp simp: not_less) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 397 | obtain u where u: "0 \<noteq> b" "0 < u" "u < 1" and x: "x = u *\<^sub>R b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 398 | using assms by (auto simp: in_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 399 | have xb: "x \<bullet> b < b \<bullet> b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 400 | using u x by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 401 | assume "norm c \<le> dist c x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 402 | then have "c \<bullet> c \<le> (c - x) \<bullet> (c - x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 403 | by (simp add: dist_norm norm_le) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 404 | moreover have "0 < x \<bullet> b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 405 | using u x by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 406 | ultimately have less: "c \<bullet> b < x \<bullet> b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 407 | by (simp add: x algebra_simps inner_commute u) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 408 | assume "dist c b \<le> dist c x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 409 | then have "(c - b) \<bullet> (c - b) \<le> (c - x) \<bullet> (c - x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 410 | by (simp add: dist_norm norm_le) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 411 | then have "(b \<bullet> b) * (1 - u*u) \<le> 2 * (b \<bullet> c) * (1-u)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 412 | by (simp add: x algebra_simps inner_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 413 | then have "(1+u) * (b \<bullet> b) * (1-u) \<le> 2 * (b \<bullet> c) * (1-u)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 414 | by (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 415 | then have "(1+u) * (b \<bullet> b) \<le> 2 * (b \<bullet> c)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 416 | using \<open>u < 1\<close> by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 417 | with xb have "c \<bullet> b \<ge> x \<bullet> b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 418 | by (auto simp: x algebra_simps inner_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 419 | with less show False by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 420 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 421 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 422 | proposition dist_decreases_open_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 423 | fixes a :: "'a :: euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 424 | assumes "x \<in> open_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 425 | shows "dist c x < dist c a \<or> dist c x < dist c b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 426 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 427 | have *: "x - a \<in> open_segment 0 (b - a)" using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 428 | by (metis diff_self open_segment_translation_eq uminus_add_conv_diff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 429 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 430 | using dist_decreases_open_segment_0 [OF *, of "c-a"] assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 431 | by (simp add: dist_norm) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 432 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 433 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 434 | corollary open_segment_furthest_le: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 435 | fixes a b x y :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 436 | assumes "x \<in> open_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 437 | shows "norm (y - x) < norm (y - a) \<or> norm (y - x) < norm (y - b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 438 | by (metis assms dist_decreases_open_segment dist_norm) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 439 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 440 | corollary dist_decreases_closed_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 441 | fixes a :: "'a :: euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 442 | assumes "x \<in> closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 443 | shows "dist c x \<le> dist c a \<or> dist c x \<le> dist c b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 444 | apply (cases "x \<in> open_segment a b") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 445 | using dist_decreases_open_segment less_eq_real_def apply blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 446 | by (metis DiffI assms empty_iff insertE open_segment_def order_refl) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 447 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 448 | lemma convex_intermediate_ball: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 449 | fixes a :: "'a :: euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 450 | shows "\<lbrakk>ball a r \<subseteq> T; T \<subseteq> cball a r\<rbrakk> \<Longrightarrow> convex T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 451 | apply (simp add: convex_contains_open_segment, clarify) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 452 | by (metis (no_types, hide_lams) less_le_trans mem_ball mem_cball subsetCE dist_decreases_open_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 453 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 454 | lemma csegment_midpoint_subset: "closed_segment (midpoint a b) b \<subseteq> closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 455 | apply (clarsimp simp: midpoint_def in_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 456 | apply (rule_tac x="(1 + u) / 2" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 457 | apply (auto simp: algebra_simps add_divide_distrib diff_divide_distrib) | 
| 68527 
2f4e2aab190a
Generalising and renaming some basic results
 paulson <lp15@cam.ac.uk> parents: 
68465diff
changeset | 458 | by (metis field_sum_of_halves scaleR_left.add) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 459 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 460 | lemma notin_segment_midpoint: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 461 | fixes a :: "'a :: euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 462 | shows "a \<noteq> b \<Longrightarrow> a \<notin> closed_segment (midpoint a b) b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 463 | by (auto simp: dist_midpoint dest!: dist_in_closed_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 464 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 465 | lemma segment_to_closest_point: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 466 | fixes S :: "'a :: euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 467 |   shows "\<lbrakk>closed S; S \<noteq> {}\<rbrakk> \<Longrightarrow> open_segment a (closest_point S a) \<inter> S = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 468 | apply (subst disjoint_iff_not_equal) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 469 | apply (clarify dest!: dist_in_open_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 470 | by (metis closest_point_le dist_commute le_less_trans less_irrefl) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 471 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 472 | lemma segment_to_point_exists: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 473 | fixes S :: "'a :: euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 474 |     assumes "closed S" "S \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 475 |     obtains b where "b \<in> S" "open_segment a b \<inter> S = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 476 | by (metis assms segment_to_closest_point closest_point_exists that) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 477 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 478 | subsubsection\<open>More lemmas, especially for working with the underlying formula\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 479 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 480 | lemma segment_eq_compose: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 481 | fixes a :: "'a :: real_vector" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 482 | shows "(\<lambda>u. (1 - u) *\<^sub>R a + u *\<^sub>R b) = (\<lambda>x. a + x) o (\<lambda>u. u *\<^sub>R (b - a))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 483 | by (simp add: o_def algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 484 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 485 | lemma segment_degen_1: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 486 | fixes a :: "'a :: real_vector" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 487 | shows "(1 - u) *\<^sub>R a + u *\<^sub>R b = b \<longleftrightarrow> a=b \<or> u=1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 488 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 489 |   { assume "(1 - u) *\<^sub>R a + u *\<^sub>R b = b"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 490 | then have "(1 - u) *\<^sub>R a = (1 - u) *\<^sub>R b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 491 | by (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 492 | then have "a=b \<or> u=1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 493 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 494 | } then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 495 | by (auto simp: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 496 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 497 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 498 | lemma segment_degen_0: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 499 | fixes a :: "'a :: real_vector" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 500 | shows "(1 - u) *\<^sub>R a + u *\<^sub>R b = a \<longleftrightarrow> a=b \<or> u=0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 501 | using segment_degen_1 [of "1-u" b a] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 502 | by (auto simp: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 503 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 504 | lemma add_scaleR_degen: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 505 | fixes a b ::"'a::real_vector" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 506 | assumes "(u *\<^sub>R b + v *\<^sub>R a) = (u *\<^sub>R a + v *\<^sub>R b)" "u \<noteq> v" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 507 | shows "a=b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 508 | by (metis (no_types, hide_lams) add.commute add_diff_eq diff_add_cancel real_vector.scale_cancel_left real_vector.scale_left_diff_distrib assms) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 509 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 510 | lemma closed_segment_image_interval: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 511 |      "closed_segment a b = (\<lambda>u. (1 - u) *\<^sub>R a + u *\<^sub>R b) ` {0..1}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 512 | by (auto simp: set_eq_iff image_iff closed_segment_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 513 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 514 | lemma open_segment_image_interval: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 515 |      "open_segment a b = (if a=b then {} else (\<lambda>u. (1 - u) *\<^sub>R a + u *\<^sub>R b) ` {0<..<1})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 516 | by (auto simp: open_segment_def closed_segment_def segment_degen_0 segment_degen_1) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 517 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 518 | lemmas segment_image_interval = closed_segment_image_interval open_segment_image_interval | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 519 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 520 | lemma open_segment_bound1: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 521 | assumes "x \<in> open_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 522 | shows "norm (x - a) < norm (b - a)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 523 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 524 | obtain u where "x = (1 - u) *\<^sub>R a + u *\<^sub>R b" "0 < u" "u < 1" "a \<noteq> b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 525 | using assms by (auto simp add: open_segment_image_interval split: if_split_asm) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 526 | then show "norm (x - a) < norm (b - a)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 527 | apply clarify | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 528 | apply (auto simp: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 529 | apply (simp add: scaleR_diff_right [symmetric]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 530 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 531 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 532 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 533 | lemma compact_segment [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 534 | fixes a :: "'a::real_normed_vector" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 535 | shows "compact (closed_segment a b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 536 | by (auto simp: segment_image_interval intro!: compact_continuous_image continuous_intros) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 537 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 538 | lemma closed_segment [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 539 | fixes a :: "'a::real_normed_vector" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 540 | shows "closed (closed_segment a b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 541 | by (simp add: compact_imp_closed) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 542 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 543 | lemma closure_closed_segment [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 544 | fixes a :: "'a::real_normed_vector" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 545 | shows "closure(closed_segment a b) = closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 546 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 547 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 548 | lemma open_segment_bound: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 549 | assumes "x \<in> open_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 550 | shows "norm (x - a) < norm (b - a)" "norm (x - b) < norm (b - a)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 551 | apply (simp add: assms open_segment_bound1) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 552 | by (metis assms norm_minus_commute open_segment_bound1 open_segment_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 553 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 554 | lemma closure_open_segment [simp]: | 
| 69661 | 555 |   "closure (open_segment a b) = (if a = b then {} else closed_segment a b)"
 | 
| 556 | for a :: "'a::euclidean_space" | |
| 557 | proof (cases "a = b") | |
| 558 | case True | |
| 559 | then show ?thesis | |
| 560 | by simp | |
| 561 | next | |
| 562 | case False | |
| 563 |   have "closure ((\<lambda>u. u *\<^sub>R (b - a)) ` {0<..<1}) = (\<lambda>u. u *\<^sub>R (b - a)) ` closure {0<..<1}"
 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 564 | apply (rule closure_injective_linear_image [symmetric]) | 
| 69661 | 565 | apply (use False in \<open>auto intro!: injI\<close>) | 
| 566 | done | |
| 567 | then have "closure | |
| 568 |      ((\<lambda>u. (1 - u) *\<^sub>R a + u *\<^sub>R b) ` {0<..<1}) =
 | |
| 569 |     (\<lambda>x. (1 - x) *\<^sub>R a + x *\<^sub>R b) ` closure {0<..<1}"
 | |
| 570 |     using closure_translation [of a "((\<lambda>x. x *\<^sub>R b - x *\<^sub>R a) ` {0<..<1})"]
 | |
| 571 | by (simp add: segment_eq_compose field_simps scaleR_diff_left scaleR_diff_right image_image) | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 572 | then show ?thesis | 
| 69661 | 573 | by (simp add: segment_image_interval closure_greaterThanLessThan [symmetric] del: closure_greaterThanLessThan) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 574 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 575 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 576 | lemma closed_open_segment_iff [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 577 | fixes a :: "'a::euclidean_space" shows "closed(open_segment a b) \<longleftrightarrow> a = b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 578 | by (metis open_segment_def DiffE closure_eq closure_open_segment ends_in_segment(1) insert_iff segment_image_interval(2)) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 579 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 580 | lemma compact_open_segment_iff [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 581 | fixes a :: "'a::euclidean_space" shows "compact(open_segment a b) \<longleftrightarrow> a = b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 582 | by (simp add: bounded_open_segment compact_eq_bounded_closed) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 583 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 584 | lemma convex_closed_segment [iff]: "convex (closed_segment a b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 585 | unfolding segment_convex_hull by(rule convex_convex_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 586 | |
| 69661 | 587 | lemma convex_open_segment [iff]: "convex (open_segment a b)" | 
| 588 | proof - | |
| 589 |   have "convex ((\<lambda>u. u *\<^sub>R (b - a)) ` {0<..<1})"
 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 590 | by (rule convex_linear_image) auto | 
| 69661 | 591 |   then have "convex ((+) a ` (\<lambda>u. u *\<^sub>R (b - a)) ` {0<..<1})"
 | 
| 592 | by (rule convex_translation) | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 593 | then show ?thesis | 
| 69661 | 594 | by (simp add: image_image open_segment_image_interval segment_eq_compose field_simps scaleR_diff_left scaleR_diff_right) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 595 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 596 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 597 | lemmas convex_segment = convex_closed_segment convex_open_segment | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 598 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 599 | lemma connected_segment [iff]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 600 | fixes x :: "'a :: real_normed_vector" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 601 | shows "connected (closed_segment x y)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 602 | by (simp add: convex_connected) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 603 | |
| 67685 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 604 | lemma is_interval_closed_segment_1[intro, simp]: "is_interval (closed_segment a b)" for a b::real | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 605 | by (auto simp: is_interval_convex_1) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 606 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 607 | lemma IVT'_closed_segment_real: | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 608 | fixes f :: "real \<Rightarrow> real" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 609 | assumes "y \<in> closed_segment (f a) (f b)" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 610 | assumes "continuous_on (closed_segment a b) f" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 611 | shows "\<exists>x \<in> closed_segment a b. f x = y" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 612 | using IVT'[of f a y b] | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 613 | IVT'[of "-f" a "-y" b] | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 614 | IVT'[of f b y a] | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 615 | IVT'[of "-f" b "-y" a] assms | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 616 | by (cases "a \<le> b"; cases "f b \<ge> f a") (auto simp: closed_segment_eq_real_ivl continuous_on_minus) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 617 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 618 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 619 | subsection\<open>Starlike sets\<close> | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 620 | |
| 70136 | 621 | definition\<^marker>\<open>tag important\<close> "starlike S \<longleftrightarrow> (\<exists>a\<in>S. \<forall>x\<in>S. closed_segment a x \<subseteq> S)" | 
| 67685 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 622 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 623 | lemma starlike_UNIV [simp]: "starlike UNIV" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 624 | by (simp add: starlike_def) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 625 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 626 | lemma convex_imp_starlike: | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 627 |   "convex S \<Longrightarrow> S \<noteq> {} \<Longrightarrow> starlike S"
 | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 628 | unfolding convex_contains_segment starlike_def by auto | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 629 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67613diff
changeset | 630 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 631 | lemma affine_hull_closed_segment [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 632 |      "affine hull (closed_segment a b) = affine hull {a,b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 633 | by (simp add: segment_convex_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 634 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 635 | lemma affine_hull_open_segment [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 636 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 637 |     shows "affine hull (open_segment a b) = (if a = b then {} else affine hull {a,b})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 638 | by (metis affine_hull_convex_hull affine_hull_empty closure_open_segment closure_same_affine_hull segment_convex_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 639 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 640 | lemma rel_interior_closure_convex_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 641 | fixes S :: "_::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 642 | assumes "convex S" "a \<in> rel_interior S" "b \<in> closure S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 643 | shows "open_segment a b \<subseteq> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 644 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 645 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 646 | have [simp]: "(1 - u) *\<^sub>R a + u *\<^sub>R b = b - (1 - u) *\<^sub>R (b - a)" for u | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 647 | by (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 648 | assume "x \<in> open_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 649 | then show "x \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 650 | unfolding closed_segment_def open_segment_def using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 651 | by (auto intro: rel_interior_closure_convex_shrink) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 652 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 653 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 654 | lemma convex_hull_insert_segments: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 655 | "convex hull (insert a S) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 656 |     (if S = {} then {a} else  \<Union>x \<in> convex hull S. closed_segment a x)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 657 | by (force simp add: convex_hull_insert_alt in_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 658 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 659 | lemma Int_convex_hull_insert_rel_exterior: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 660 | fixes z :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 661 | assumes "convex C" "T \<subseteq> C" and z: "z \<in> rel_interior C" and dis: "disjnt S (rel_interior C)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 662 | shows "S \<inter> (convex hull (insert z T)) = S \<inter> (convex hull T)" (is "?lhs = ?rhs") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 663 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 664 |   have "T = {} \<Longrightarrow> z \<notin> S"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 665 | using dis z by (auto simp add: disjnt_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 666 | then show "?lhs \<subseteq> ?rhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 667 | proof (clarsimp simp add: convex_hull_insert_segments) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 668 | fix x y | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 669 | assume "x \<in> S" and y: "y \<in> convex hull T" and "x \<in> closed_segment z y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 670 | have "y \<in> closure C" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 671 | by (metis y \<open>convex C\<close> \<open>T \<subseteq> C\<close> closure_subset contra_subsetD convex_hull_eq hull_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 672 | moreover have "x \<notin> rel_interior C" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 673 | by (meson \<open>x \<in> S\<close> dis disjnt_iff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 674 |     moreover have "x \<in> open_segment z y \<union> {z, y}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 675 | using \<open>x \<in> closed_segment z y\<close> closed_segment_eq_open by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 676 | ultimately show "x \<in> convex hull T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 677 | using rel_interior_closure_convex_segment [OF \<open>convex C\<close> z] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 678 | using y z by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 679 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 680 | show "?rhs \<subseteq> ?lhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 681 | by (meson hull_mono inf_mono subset_insertI subset_refl) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 682 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 683 | |
| 70136 | 684 | subsection\<^marker>\<open>tag unimportant\<close>\<open>More results about segments\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 685 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 686 | lemma dist_half_times2: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 687 | fixes a :: "'a :: real_normed_vector" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 688 | shows "dist ((1 / 2) *\<^sub>R (a + b)) x * 2 = dist (a+b) (2 *\<^sub>R x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 689 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 690 | have "norm ((1 / 2) *\<^sub>R (a + b) - x) * 2 = norm (2 *\<^sub>R ((1 / 2) *\<^sub>R (a + b) - x))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 691 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 692 | also have "... = norm ((a + b) - 2 *\<^sub>R x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 693 | by (simp add: real_vector.scale_right_diff_distrib) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 694 | finally show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 695 | by (simp only: dist_norm) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 696 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 697 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 698 | lemma closed_segment_as_ball: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 699 |     "closed_segment a b = affine hull {a,b} \<inter> cball(inverse 2 *\<^sub>R (a + b))(norm(b - a) / 2)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 700 | proof (cases "b = a") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 701 | case True then show ?thesis by (auto simp: hull_inc) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 702 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 703 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 704 | then have *: "((\<exists>u v. x = u *\<^sub>R a + v *\<^sub>R b \<and> u + v = 1) \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 705 | dist ((1 / 2) *\<^sub>R (a + b)) x * 2 \<le> norm (b - a)) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 706 | (\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b \<and> 0 \<le> u \<and> u \<le> 1)" for x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 707 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 708 | have "((\<exists>u v. x = u *\<^sub>R a + v *\<^sub>R b \<and> u + v = 1) \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 709 | dist ((1 / 2) *\<^sub>R (a + b)) x * 2 \<le> norm (b - a)) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 710 | ((\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b) \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 711 | dist ((1 / 2) *\<^sub>R (a + b)) x * 2 \<le> norm (b - a))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 712 | unfolding eq_diff_eq [symmetric] by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 713 | also have "... = (\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 714 | norm ((a+b) - (2 *\<^sub>R x)) \<le> norm (b - a))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 715 | by (simp add: dist_half_times2) (simp add: dist_norm) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 716 | also have "... = (\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 717 | norm ((a+b) - (2 *\<^sub>R ((1 - u) *\<^sub>R a + u *\<^sub>R b))) \<le> norm (b - a))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 718 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 719 | also have "... = (\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 720 | norm ((1 - u * 2) *\<^sub>R (b - a)) \<le> norm (b - a))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 721 | by (simp add: algebra_simps scaleR_2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 722 | also have "... = (\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 723 | \<bar>1 - u * 2\<bar> * norm (b - a) \<le> norm (b - a))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 724 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 725 | also have "... = (\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b \<and> \<bar>1 - u * 2\<bar> \<le> 1)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 726 | by (simp add: mult_le_cancel_right2 False) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 727 | also have "... = (\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b \<and> 0 \<le> u \<and> u \<le> 1)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 728 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 729 | finally show ?thesis . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 730 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 731 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 732 | by (simp add: affine_hull_2 Set.set_eq_iff closed_segment_def *) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 733 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 734 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 735 | lemma open_segment_as_ball: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 736 | "open_segment a b = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 737 |      affine hull {a,b} \<inter> ball(inverse 2 *\<^sub>R (a + b))(norm(b - a) / 2)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 738 | proof (cases "b = a") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 739 | case True then show ?thesis by (auto simp: hull_inc) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 740 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 741 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 742 | then have *: "((\<exists>u v. x = u *\<^sub>R a + v *\<^sub>R b \<and> u + v = 1) \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 743 | dist ((1 / 2) *\<^sub>R (a + b)) x * 2 < norm (b - a)) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 744 | (\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b \<and> 0 < u \<and> u < 1)" for x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 745 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 746 | have "((\<exists>u v. x = u *\<^sub>R a + v *\<^sub>R b \<and> u + v = 1) \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 747 | dist ((1 / 2) *\<^sub>R (a + b)) x * 2 < norm (b - a)) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 748 | ((\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b) \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 749 | dist ((1 / 2) *\<^sub>R (a + b)) x * 2 < norm (b - a))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 750 | unfolding eq_diff_eq [symmetric] by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 751 | also have "... = (\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 752 | norm ((a+b) - (2 *\<^sub>R x)) < norm (b - a))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 753 | by (simp add: dist_half_times2) (simp add: dist_norm) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 754 | also have "... = (\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 755 | norm ((a+b) - (2 *\<^sub>R ((1 - u) *\<^sub>R a + u *\<^sub>R b))) < norm (b - a))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 756 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 757 | also have "... = (\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 758 | norm ((1 - u * 2) *\<^sub>R (b - a)) < norm (b - a))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 759 | by (simp add: algebra_simps scaleR_2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 760 | also have "... = (\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 761 | \<bar>1 - u * 2\<bar> * norm (b - a) < norm (b - a))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 762 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 763 | also have "... = (\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b \<and> \<bar>1 - u * 2\<bar> < 1)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 764 | by (simp add: mult_le_cancel_right2 False) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 765 | also have "... = (\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b \<and> 0 < u \<and> u < 1)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 766 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 767 | finally show ?thesis . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 768 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 769 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 770 | using False by (force simp: affine_hull_2 Set.set_eq_iff open_segment_image_interval *) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 771 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 772 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 773 | lemmas segment_as_ball = closed_segment_as_ball open_segment_as_ball | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 774 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 775 | lemma closed_segment_neq_empty [simp]: "closed_segment a b \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 776 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 777 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 778 | lemma open_segment_eq_empty [simp]: "open_segment a b = {} \<longleftrightarrow> a = b"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 779 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 780 |   { assume a1: "open_segment a b = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 781 |     have "{} \<noteq> {0::real<..<1}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 782 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 783 | then have "a = b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 784 | using a1 open_segment_image_interval by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 785 | } then show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 786 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 787 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 788 | lemma open_segment_eq_empty' [simp]: "{} = open_segment a b \<longleftrightarrow> a = b"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 789 | using open_segment_eq_empty by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 790 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 791 | lemmas segment_eq_empty = closed_segment_neq_empty open_segment_eq_empty | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 792 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 793 | lemma inj_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 794 | fixes a :: "'a :: real_vector" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 795 | assumes "a \<noteq> b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 796 | shows "inj_on (\<lambda>u. (1 - u) *\<^sub>R a + u *\<^sub>R b) I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 797 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 798 | fix x y | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 799 | assume "(1 - x) *\<^sub>R a + x *\<^sub>R b = (1 - y) *\<^sub>R a + y *\<^sub>R b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 800 | then have "x *\<^sub>R (b - a) = y *\<^sub>R (b - a)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 801 | by (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 802 | with assms show "x = y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 803 | by (simp add: real_vector.scale_right_imp_eq) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 804 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 805 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 806 | lemma finite_closed_segment [simp]: "finite(closed_segment a b) \<longleftrightarrow> a = b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 807 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 808 | apply (rule ccontr) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 809 | apply (simp add: segment_image_interval) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 810 | using infinite_Icc [OF zero_less_one] finite_imageD [OF _ inj_segment] apply blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 811 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 812 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 813 | lemma finite_open_segment [simp]: "finite(open_segment a b) \<longleftrightarrow> a = b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 814 | by (auto simp: open_segment_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 815 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 816 | lemmas finite_segment = finite_closed_segment finite_open_segment | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 817 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 818 | lemma closed_segment_eq_sing: "closed_segment a b = {c} \<longleftrightarrow> a = c \<and> b = c"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 819 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 820 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 821 | lemma open_segment_eq_sing: "open_segment a b \<noteq> {c}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 822 | by (metis finite_insert finite_open_segment insert_not_empty open_segment_image_interval) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 823 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 824 | lemmas segment_eq_sing = closed_segment_eq_sing open_segment_eq_sing | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 825 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 826 | lemma subset_closed_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 827 | "closed_segment a b \<subseteq> closed_segment c d \<longleftrightarrow> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 828 | a \<in> closed_segment c d \<and> b \<in> closed_segment c d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 829 | by auto (meson contra_subsetD convex_closed_segment convex_contains_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 830 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 831 | lemma subset_co_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 832 | "closed_segment a b \<subseteq> open_segment c d \<longleftrightarrow> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 833 | a \<in> open_segment c d \<and> b \<in> open_segment c d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 834 | using closed_segment_subset by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 835 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 836 | lemma subset_open_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 837 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 838 | shows "open_segment a b \<subseteq> open_segment c d \<longleftrightarrow> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 839 | a = b \<or> a \<in> closed_segment c d \<and> b \<in> closed_segment c d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 840 | (is "?lhs = ?rhs") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 841 | proof (cases "a = b") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 842 | case True then show ?thesis by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 843 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 844 | case False show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 845 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 846 | assume rhs: ?rhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 847 | with \<open>a \<noteq> b\<close> have "c \<noteq> d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 848 | using closed_segment_idem singleton_iff by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 849 | have "\<exists>uc. (1 - u) *\<^sub>R ((1 - ua) *\<^sub>R c + ua *\<^sub>R d) + u *\<^sub>R ((1 - ub) *\<^sub>R c + ub *\<^sub>R d) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 850 | (1 - uc) *\<^sub>R c + uc *\<^sub>R d \<and> 0 < uc \<and> uc < 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 851 | if neq: "(1 - ua) *\<^sub>R c + ua *\<^sub>R d \<noteq> (1 - ub) *\<^sub>R c + ub *\<^sub>R d" "c \<noteq> d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 852 | and "a = (1 - ua) *\<^sub>R c + ua *\<^sub>R d" "b = (1 - ub) *\<^sub>R c + ub *\<^sub>R d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 853 | and u: "0 < u" "u < 1" and uab: "0 \<le> ua" "ua \<le> 1" "0 \<le> ub" "ub \<le> 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 854 | for u ua ub | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 855 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 856 | have "ua \<noteq> ub" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 857 | using neq by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 858 | moreover have "(u - 1) * ua \<le> 0" using u uab | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 859 | by (simp add: mult_nonpos_nonneg) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 860 | ultimately have lt: "(u - 1) * ua < u * ub" using u uab | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 861 | by (metis antisym_conv diff_ge_0_iff_ge le_less_trans mult_eq_0_iff mult_le_0_iff not_less) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 862 | have "p * ua + q * ub < p+q" if p: "0 < p" and q: "0 < q" for p q | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 863 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 864 | have "\<not> p \<le> 0" "\<not> q \<le> 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 865 | using p q not_less by blast+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 866 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 867 | by (metis \<open>ua \<noteq> ub\<close> add_less_cancel_left add_less_cancel_right add_mono_thms_linordered_field(5) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 868 | less_eq_real_def mult_cancel_left1 mult_less_cancel_left2 uab(2) uab(4)) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 869 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 870 | then have "(1 - u) * ua + u * ub < 1" using u \<open>ua \<noteq> ub\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 871 | by (metis diff_add_cancel diff_gt_0_iff_gt) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 872 | with lt show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 873 | by (rule_tac x="ua + u*(ub-ua)" in exI) (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 874 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 875 | with rhs \<open>a \<noteq> b\<close> \<open>c \<noteq> d\<close> show ?lhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 876 | unfolding open_segment_image_interval closed_segment_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 877 | by (fastforce simp add:) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 878 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 879 | assume lhs: ?lhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 880 | with \<open>a \<noteq> b\<close> have "c \<noteq> d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 881 | by (meson finite_open_segment rev_finite_subset) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 882 | have "closure (open_segment a b) \<subseteq> closure (open_segment c d)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 883 | using lhs closure_mono by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 884 | then have "closed_segment a b \<subseteq> closed_segment c d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 885 | by (simp add: \<open>a \<noteq> b\<close> \<open>c \<noteq> d\<close>) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 886 | then show ?rhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 887 | by (force simp: \<open>a \<noteq> b\<close>) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 888 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 889 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 890 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 891 | lemma subset_oc_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 892 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 893 | shows "open_segment a b \<subseteq> closed_segment c d \<longleftrightarrow> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 894 | a = b \<or> a \<in> closed_segment c d \<and> b \<in> closed_segment c d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 895 | apply (simp add: subset_open_segment [symmetric]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 896 | apply (rule iffI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 897 | apply (metis closure_closed_segment closure_mono closure_open_segment subset_closed_segment subset_open_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 898 | apply (meson dual_order.trans segment_open_subset_closed) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 899 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 900 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 901 | lemmas subset_segment = subset_closed_segment subset_co_segment subset_oc_segment subset_open_segment | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 902 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 903 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 904 | subsection\<open>Betweenness\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 905 | |
| 70136 | 906 | definition\<^marker>\<open>tag important\<close> "between = (\<lambda>(a,b) x. x \<in> closed_segment a b)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 907 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 908 | lemma betweenI: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 909 | assumes "0 \<le> u" "u \<le> 1" "x = (1 - u) *\<^sub>R a + u *\<^sub>R b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 910 | shows "between (a, b) x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 911 | using assms unfolding between_def closed_segment_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 912 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 913 | lemma betweenE: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 914 | assumes "between (a, b) x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 915 | obtains u where "0 \<le> u" "u \<le> 1" "x = (1 - u) *\<^sub>R a + u *\<^sub>R b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 916 | using assms unfolding between_def closed_segment_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 917 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 918 | lemma between_implies_scaled_diff: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 919 | assumes "between (S, T) X" "between (S, T) Y" "S \<noteq> Y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 920 | obtains c where "(X - Y) = c *\<^sub>R (S - Y)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 921 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 922 | from \<open>between (S, T) X\<close> obtain u\<^sub>X where X: "X = u\<^sub>X *\<^sub>R S + (1 - u\<^sub>X) *\<^sub>R T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 923 | by (metis add.commute betweenE eq_diff_eq) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 924 | from \<open>between (S, T) Y\<close> obtain u\<^sub>Y where Y: "Y = u\<^sub>Y *\<^sub>R S + (1 - u\<^sub>Y) *\<^sub>R T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 925 | by (metis add.commute betweenE eq_diff_eq) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 926 | have "X - Y = (u\<^sub>X - u\<^sub>Y) *\<^sub>R (S - T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 927 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 928 | from X Y have "X - Y = u\<^sub>X *\<^sub>R S - u\<^sub>Y *\<^sub>R S + ((1 - u\<^sub>X) *\<^sub>R T - (1 - u\<^sub>Y) *\<^sub>R T)" by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 929 | also have "\<dots> = (u\<^sub>X - u\<^sub>Y) *\<^sub>R S - (u\<^sub>X - u\<^sub>Y) *\<^sub>R T" by (simp add: scaleR_left.diff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 930 | finally show ?thesis by (simp add: real_vector.scale_right_diff_distrib) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 931 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 932 | moreover from Y have "S - Y = (1 - u\<^sub>Y) *\<^sub>R (S - T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 933 | by (simp add: real_vector.scale_left_diff_distrib real_vector.scale_right_diff_distrib) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 934 | moreover note \<open>S \<noteq> Y\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 935 | ultimately have "(X - Y) = ((u\<^sub>X - u\<^sub>Y) / (1 - u\<^sub>Y)) *\<^sub>R (S - Y)" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 936 | from this that show thesis by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 937 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 938 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 939 | lemma between_mem_segment: "between (a,b) x \<longleftrightarrow> x \<in> closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 940 | unfolding between_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 941 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 942 | lemma between: "between (a, b) (x::'a::euclidean_space) \<longleftrightarrow> dist a b = (dist a x) + (dist x b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 943 | proof (cases "a = b") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 944 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 945 | then show ?thesis | 
| 68056 | 946 | by (auto simp add: between_def dist_commute) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 947 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 948 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 949 | then have Fal: "norm (a - b) \<noteq> 0" and Fal2: "norm (a - b) > 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 950 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 951 | have *: "\<And>u. a - ((1 - u) *\<^sub>R a + u *\<^sub>R b) = u *\<^sub>R (a - b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 952 | by (auto simp add: algebra_simps) | 
| 68056 | 953 | have "norm (a - x) *\<^sub>R (x - b) = norm (x - b) *\<^sub>R (a - x)" if "x = (1 - u) *\<^sub>R a + u *\<^sub>R b" "0 \<le> u" "u \<le> 1" for u | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 954 | proof - | 
| 68056 | 955 | have *: "a - x = u *\<^sub>R (a - b)" "x - b = (1 - u) *\<^sub>R (a - b)" | 
| 956 | unfolding that(1) by (auto simp add:algebra_simps) | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 957 | show "norm (a - x) *\<^sub>R (x - b) = norm (x - b) *\<^sub>R (a - x)" | 
| 68056 | 958 | unfolding norm_minus_commute[of x a] * using \<open>0 \<le> u\<close> \<open>u \<le> 1\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 959 | by (auto simp add: field_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 960 | qed | 
| 68056 | 961 | moreover have "\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b \<and> 0 \<le> u \<and> u \<le> 1" if "dist a b = dist a x + dist x b" | 
| 962 | proof - | |
| 963 | let ?\<beta> = "norm (a - x) / norm (a - b)" | |
| 964 | show "\<exists>u. x = (1 - u) *\<^sub>R a + u *\<^sub>R b \<and> 0 \<le> u \<and> u \<le> 1" | |
| 965 | proof (intro exI conjI) | |
| 966 | show "?\<beta> \<le> 1" | |
| 967 | using Fal2 unfolding that[unfolded dist_norm] norm_ge_zero by auto | |
| 968 | show "x = (1 - ?\<beta>) *\<^sub>R a + (?\<beta>) *\<^sub>R b" | |
| 969 | proof (subst euclidean_eq_iff; intro ballI) | |
| 970 | fix i :: 'a | |
| 971 | assume i: "i \<in> Basis" | |
| 972 | have "((1 - ?\<beta>) *\<^sub>R a + (?\<beta>) *\<^sub>R b) \<bullet> i | |
| 973 | = ((norm (a - b) - norm (a - x)) * (a \<bullet> i) + norm (a - x) * (b \<bullet> i)) / norm (a - b)" | |
| 974 | using Fal by (auto simp add: field_simps inner_simps) | |
| 975 | also have "\<dots> = x\<bullet>i" | |
| 976 | apply (rule divide_eq_imp[OF Fal]) | |
| 977 | unfolding that[unfolded dist_norm] | |
| 978 | using that[unfolded dist_triangle_eq] i | |
| 979 | apply (subst (asm) euclidean_eq_iff) | |
| 980 | apply (auto simp add: field_simps inner_simps) | |
| 981 | done | |
| 982 | finally show "x \<bullet> i = ((1 - ?\<beta>) *\<^sub>R a + (?\<beta>) *\<^sub>R b) \<bullet> i" | |
| 983 | by auto | |
| 984 | qed | |
| 985 | qed (use Fal2 in auto) | |
| 986 | qed | |
| 987 | ultimately show ?thesis | |
| 988 | by (force simp add: between_def closed_segment_def dist_triangle_eq) | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 989 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 990 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 991 | lemma between_midpoint: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 992 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 993 | shows "between (a,b) (midpoint a b)" (is ?t1) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 994 | and "between (b,a) (midpoint a b)" (is ?t2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 995 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 996 | have *: "\<And>x y z. x = (1/2::real) *\<^sub>R z \<Longrightarrow> y = (1/2) *\<^sub>R z \<Longrightarrow> norm z = norm x + norm y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 997 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 998 | show ?t1 ?t2 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 999 | unfolding between midpoint_def dist_norm | 
| 68056 | 1000 | by (auto simp add: field_simps inner_simps euclidean_eq_iff[where 'a='a] intro!: *) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1001 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1002 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1003 | lemma between_mem_convex_hull: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1004 |   "between (a,b) x \<longleftrightarrow> x \<in> convex hull {a,b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1005 | unfolding between_mem_segment segment_convex_hull .. | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1006 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1007 | lemma between_triv_iff [simp]: "between (a,a) b \<longleftrightarrow> a=b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1008 | by (auto simp: between_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1009 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1010 | lemma between_triv1 [simp]: "between (a,b) a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1011 | by (auto simp: between_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1012 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1013 | lemma between_triv2 [simp]: "between (a,b) b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1014 | by (auto simp: between_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1015 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1016 | lemma between_commute: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1017 | "between (a,b) = between (b,a)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1018 | by (auto simp: between_def closed_segment_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1019 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1020 | lemma between_antisym: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1021 | fixes a :: "'a :: euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1022 | shows "\<lbrakk>between (b,c) a; between (a,c) b\<rbrakk> \<Longrightarrow> a = b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1023 | by (auto simp: between dist_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1024 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1025 | lemma between_trans: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1026 | fixes a :: "'a :: euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1027 | shows "\<lbrakk>between (b,c) a; between (a,c) d\<rbrakk> \<Longrightarrow> between (b,c) d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1028 | using dist_triangle2 [of b c d] dist_triangle3 [of b d a] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1029 | by (auto simp: between dist_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1030 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1031 | lemma between_norm: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1032 | fixes a :: "'a :: euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1033 | shows "between (a,b) x \<longleftrightarrow> norm(x - a) *\<^sub>R (b - x) = norm(b - x) *\<^sub>R (x - a)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1034 | by (auto simp: between dist_triangle_eq norm_minus_commute algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1035 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1036 | lemma between_swap: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1037 | fixes A B X Y :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1038 | assumes "between (A, B) X" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1039 | assumes "between (A, B) Y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1040 | shows "between (X, B) Y \<longleftrightarrow> between (A, Y) X" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1041 | using assms by (auto simp add: between) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1042 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1043 | lemma between_translation [simp]: "between (a + y,a + z) (a + x) \<longleftrightarrow> between (y,z) x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1044 | by (auto simp: between_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1045 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1046 | lemma between_trans_2: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1047 | fixes a :: "'a :: euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1048 | shows "\<lbrakk>between (b,c) a; between (a,b) d\<rbrakk> \<Longrightarrow> between (c,d) a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1049 | by (metis between_commute between_swap between_trans) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1050 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1051 | lemma between_scaleR_lift [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1052 | fixes v :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1053 | shows "between (a *\<^sub>R v, b *\<^sub>R v) (c *\<^sub>R v) \<longleftrightarrow> v = 0 \<or> between (a, b) c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1054 | by (simp add: between dist_norm scaleR_left_diff_distrib [symmetric] distrib_right [symmetric]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1055 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1056 | lemma between_1: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1057 | fixes x::real | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1058 | shows "between (a,b) x \<longleftrightarrow> (a \<le> x \<and> x \<le> b) \<or> (b \<le> x \<and> x \<le> a)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1059 | by (auto simp: between_mem_segment closed_segment_eq_real_ivl) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1060 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1061 | |
| 70136 | 1062 | subsection\<^marker>\<open>tag unimportant\<close> \<open>Shrinking towards the interior of a convex set\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1063 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1064 | lemma mem_interior_convex_shrink: | 
| 68056 | 1065 | fixes S :: "'a::euclidean_space set" | 
| 1066 | assumes "convex S" | |
| 1067 | and "c \<in> interior S" | |
| 1068 | and "x \<in> S" | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1069 | and "0 < e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1070 | and "e \<le> 1" | 
| 68056 | 1071 | shows "x - e *\<^sub>R (x - c) \<in> interior S" | 
| 1072 | proof - | |
| 1073 | obtain d where "d > 0" and d: "ball c d \<subseteq> S" | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1074 | using assms(2) unfolding mem_interior by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1075 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1076 | unfolding mem_interior | 
| 68056 | 1077 | proof (intro exI subsetI conjI) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1078 | fix y | 
| 68056 | 1079 | assume "y \<in> ball (x - e *\<^sub>R (x - c)) (e*d)" | 
| 1080 | then have as: "dist (x - e *\<^sub>R (x - c)) y < e * d" | |
| 1081 | by simp | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1082 | have *: "y = (1 - (1 - e)) *\<^sub>R ((1 / e) *\<^sub>R y - ((1 - e) / e) *\<^sub>R x) + (1 - e) *\<^sub>R x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1083 | using \<open>e > 0\<close> by (auto simp add: scaleR_left_diff_distrib scaleR_right_diff_distrib) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1084 | have "dist c ((1 / e) *\<^sub>R y - ((1 - e) / e) *\<^sub>R x) = \<bar>1/e\<bar> * norm (e *\<^sub>R c - y + (1 - e) *\<^sub>R x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1085 | unfolding dist_norm | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1086 | unfolding norm_scaleR[symmetric] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1087 | apply (rule arg_cong[where f=norm]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1088 | using \<open>e > 0\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1089 | by (auto simp add: euclidean_eq_iff[where 'a='a] field_simps inner_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1090 | also have "\<dots> = \<bar>1/e\<bar> * norm (x - e *\<^sub>R (x - c) - y)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1091 | by (auto intro!:arg_cong[where f=norm] simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1092 | also have "\<dots> < d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1093 | using as[unfolded dist_norm] and \<open>e > 0\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1094 | by (auto simp add:pos_divide_less_eq[OF \<open>e > 0\<close>] mult.commute) | 
| 68056 | 1095 | finally show "y \<in> S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1096 | apply (subst *) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1097 | apply (rule assms(1)[unfolded convex_alt,rule_format]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1098 | apply (rule d[unfolded subset_eq,rule_format]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1099 | unfolding mem_ball | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1100 | using assms(3-5) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1101 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1102 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1103 | qed (insert \<open>e>0\<close> \<open>d>0\<close>, auto) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1104 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1105 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1106 | lemma mem_interior_closure_convex_shrink: | 
| 68056 | 1107 | fixes S :: "'a::euclidean_space set" | 
| 1108 | assumes "convex S" | |
| 1109 | and "c \<in> interior S" | |
| 1110 | and "x \<in> closure S" | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1111 | and "0 < e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1112 | and "e \<le> 1" | 
| 68056 | 1113 | shows "x - e *\<^sub>R (x - c) \<in> interior S" | 
| 1114 | proof - | |
| 1115 | obtain d where "d > 0" and d: "ball c d \<subseteq> S" | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1116 | using assms(2) unfolding mem_interior by auto | 
| 68056 | 1117 | have "\<exists>y\<in>S. norm (y - x) * (1 - e) < e * d" | 
| 1118 | proof (cases "x \<in> S") | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1119 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1120 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1121 | using \<open>e > 0\<close> \<open>d > 0\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1122 | apply (rule_tac bexI[where x=x]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1123 | apply (auto) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1124 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1125 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1126 | case False | 
| 68056 | 1127 | then have x: "x islimpt S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1128 | using assms(3)[unfolded closure_def] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1129 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1130 | proof (cases "e = 1") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1131 | case True | 
| 68056 | 1132 | obtain y where "y \<in> S" "y \<noteq> x" "dist y x < 1" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1133 | using x[unfolded islimpt_approachable,THEN spec[where x=1]] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1134 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1135 | apply (rule_tac x=y in bexI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1136 | unfolding True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1137 | using \<open>d > 0\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1138 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1139 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1140 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1141 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1142 | then have "0 < e * d / (1 - e)" and *: "1 - e > 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1143 | using \<open>e \<le> 1\<close> \<open>e > 0\<close> \<open>d > 0\<close> by auto | 
| 68056 | 1144 | then obtain y where "y \<in> S" "y \<noteq> x" "dist y x < e * d / (1 - e)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1145 | using x[unfolded islimpt_approachable,THEN spec[where x="e*d / (1 - e)"]] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1146 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1147 | apply (rule_tac x=y in bexI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1148 | unfolding dist_norm | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1149 | using pos_less_divide_eq[OF *] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1150 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1151 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1152 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1153 | qed | 
| 68056 | 1154 | then obtain y where "y \<in> S" and y: "norm (y - x) * (1 - e) < e * d" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1155 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1156 | define z where "z = c + ((1 - e) / e) *\<^sub>R (x - y)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1157 | have *: "x - e *\<^sub>R (x - c) = y - e *\<^sub>R (y - z)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1158 | unfolding z_def using \<open>e > 0\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1159 | by (auto simp add: scaleR_right_diff_distrib scaleR_right_distrib scaleR_left_diff_distrib) | 
| 68056 | 1160 | have "z \<in> interior S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1161 | apply (rule interior_mono[OF d,unfolded subset_eq,rule_format]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1162 | unfolding interior_open[OF open_ball] mem_ball z_def dist_norm using y and assms(4,5) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1163 | apply (auto simp add:field_simps norm_minus_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1164 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1165 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1166 | unfolding * | 
| 68056 | 1167 | using mem_interior_convex_shrink \<open>y \<in> S\<close> assms by blast | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1168 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1169 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1170 | lemma in_interior_closure_convex_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1171 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1172 | assumes "convex S" and a: "a \<in> interior S" and b: "b \<in> closure S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1173 | shows "open_segment a b \<subseteq> interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1174 | proof (clarsimp simp: in_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1175 | fix u::real | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1176 | assume u: "0 < u" "u < 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1177 | have "(1 - u) *\<^sub>R a + u *\<^sub>R b = b - (1 - u) *\<^sub>R (b - a)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1178 | by (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1179 | also have "... \<in> interior S" using mem_interior_closure_convex_shrink [OF assms] u | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1180 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1181 | finally show "(1 - u) *\<^sub>R a + u *\<^sub>R b \<in> interior S" . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1182 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1183 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1184 | lemma closure_open_Int_superset: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1185 | assumes "open S" "S \<subseteq> closure T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1186 | shows "closure(S \<inter> T) = closure S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1187 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1188 | have "closure S \<subseteq> closure(S \<inter> T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1189 | by (metis assms closed_closure closure_minimal inf.orderE open_Int_closure_subset) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1190 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1191 | by (simp add: closure_mono dual_order.antisym) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1192 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1193 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1194 | lemma convex_closure_interior: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1195 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1196 |   assumes "convex S" and int: "interior S \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1197 | shows "closure(interior S) = closure S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1198 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1199 | obtain a where a: "a \<in> interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1200 | using int by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1201 | have "closure S \<subseteq> closure(interior S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1202 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1203 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1204 | assume x: "x \<in> closure S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1205 | show "x \<in> closure (interior S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1206 | proof (cases "x=a") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1207 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1208 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1209 | using \<open>a \<in> interior S\<close> closure_subset by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1210 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1211 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1212 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1213 | proof (clarsimp simp add: closure_def islimpt_approachable) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1214 | fix e::real | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1215 | assume xnotS: "x \<notin> interior S" and "0 < e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1216 | show "\<exists>x'\<in>interior S. x' \<noteq> x \<and> dist x' x < e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1217 | proof (intro bexI conjI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1218 | show "x - min (e/2 / norm (x - a)) 1 *\<^sub>R (x - a) \<noteq> x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1219 | using False \<open>0 < e\<close> by (auto simp: algebra_simps min_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1220 | show "dist (x - min (e/2 / norm (x - a)) 1 *\<^sub>R (x - a)) x < e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1221 | using \<open>0 < e\<close> by (auto simp: dist_norm min_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1222 | show "x - min (e/2 / norm (x - a)) 1 *\<^sub>R (x - a) \<in> interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1223 | apply (clarsimp simp add: min_def a) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1224 | apply (rule mem_interior_closure_convex_shrink [OF \<open>convex S\<close> a x]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1225 | using \<open>0 < e\<close> False apply (auto simp: divide_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1226 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1227 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1228 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1229 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1230 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1231 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1232 | by (simp add: closure_mono interior_subset subset_antisym) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1233 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1234 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1235 | lemma closure_convex_Int_superset: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1236 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1237 |   assumes "convex S" "interior S \<noteq> {}" "interior S \<subseteq> closure T"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1238 | shows "closure(S \<inter> T) = closure S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1239 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1240 | have "closure S \<subseteq> closure(interior S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1241 | by (simp add: convex_closure_interior assms) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1242 | also have "... \<subseteq> closure (S \<inter> T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1243 | using interior_subset [of S] assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1244 | by (metis (no_types, lifting) Int_assoc Int_lower2 closure_mono closure_open_Int_superset inf.orderE open_interior) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1245 | finally show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1246 | by (simp add: closure_mono dual_order.antisym) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1247 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1248 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1249 | |
| 70136 | 1250 | subsection\<^marker>\<open>tag unimportant\<close> \<open>Some obvious but surprisingly hard simplex lemmas\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1251 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1252 | lemma simplex: | 
| 68056 | 1253 | assumes "finite S" | 
| 1254 | and "0 \<notin> S" | |
| 1255 |   shows "convex hull (insert 0 S) = {y. \<exists>u. (\<forall>x\<in>S. 0 \<le> u x) \<and> sum u S \<le> 1 \<and> sum (\<lambda>x. u x *\<^sub>R x) S = y}"
 | |
| 1256 | proof (simp add: convex_hull_finite set_eq_iff assms, safe) | |
| 1257 | fix x and u :: "'a \<Rightarrow> real" | |
| 1258 | assume "0 \<le> u 0" "\<forall>x\<in>S. 0 \<le> u x" "u 0 + sum u S = 1" | |
| 1259 | then show "\<exists>v. (\<forall>x\<in>S. 0 \<le> v x) \<and> sum v S \<le> 1 \<and> (\<Sum>x\<in>S. v x *\<^sub>R x) = (\<Sum>x\<in>S. u x *\<^sub>R x)" | |
| 1260 | by force | |
| 1261 | next | |
| 1262 | fix x and u :: "'a \<Rightarrow> real" | |
| 1263 | assume "\<forall>x\<in>S. 0 \<le> u x" "sum u S \<le> 1" | |
| 1264 | then show "\<exists>v. 0 \<le> v 0 \<and> (\<forall>x\<in>S. 0 \<le> v x) \<and> v 0 + sum v S = 1 \<and> (\<Sum>x\<in>S. v x *\<^sub>R x) = (\<Sum>x\<in>S. u x *\<^sub>R x)" | |
| 1265 | by (rule_tac x="\<lambda>x. if x = 0 then 1 - sum u S else u x" in exI) (auto simp: sum_delta_notmem assms if_smult) | |
| 1266 | qed | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1267 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1268 | lemma substd_simplex: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1269 | assumes d: "d \<subseteq> Basis" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1270 | shows "convex hull (insert 0 d) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1271 |     {x. (\<forall>i\<in>Basis. 0 \<le> x\<bullet>i) \<and> (\<Sum>i\<in>d. x\<bullet>i) \<le> 1 \<and> (\<forall>i\<in>Basis. i \<notin> d \<longrightarrow> x\<bullet>i = 0)}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1272 | (is "convex hull (insert 0 ?p) = ?s") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1273 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1274 | let ?D = d | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1275 | have "0 \<notin> ?p" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1276 | using assms by (auto simp: image_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1277 | from d have "finite d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1278 | by (blast intro: finite_subset finite_Basis) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1279 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1280 | unfolding simplex[OF \<open>finite d\<close> \<open>0 \<notin> ?p\<close>] | 
| 68056 | 1281 | proof (intro set_eqI; safe) | 
| 1282 | fix u :: "'a \<Rightarrow> real" | |
| 1283 | assume as: "\<forall>x\<in>?D. 0 \<le> u x" "sum u ?D \<le> 1" | |
| 1284 | let ?x = "(\<Sum>x\<in>?D. u x *\<^sub>R x)" | |
| 1285 | have ind: "\<forall>i\<in>Basis. i \<in> d \<longrightarrow> u i = ?x \<bullet> i" | |
| 1286 | and notind: "(\<forall>i\<in>Basis. i \<notin> d \<longrightarrow> ?x \<bullet> i = 0)" | |
| 1287 | using substdbasis_expansion_unique[OF assms] by blast+ | |
| 1288 | then have **: "sum u ?D = sum ((\<bullet>) ?x) ?D" | |
| 1289 | using assms by (auto intro!: sum.cong) | |
| 1290 | show "0 \<le> ?x \<bullet> i" if "i \<in> Basis" for i | |
| 1291 | using as(1) ind notind that by fastforce | |
| 1292 | show "sum ((\<bullet>) ?x) ?D \<le> 1" | |
| 1293 | using "**" as(2) by linarith | |
| 1294 | show "?x \<bullet> i = 0" if "i \<in> Basis" "i \<notin> d" for i | |
| 1295 | using notind that by blast | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1296 | next | 
| 68056 | 1297 | fix x | 
| 1298 | assume "\<forall>i\<in>Basis. 0 \<le> x \<bullet> i" "sum ((\<bullet>) x) ?D \<le> 1" "(\<forall>i\<in>Basis. i \<notin> d \<longrightarrow> x \<bullet> i = 0)" | |
| 1299 | with d show "\<exists>u. (\<forall>x\<in>?D. 0 \<le> u x) \<and> sum u ?D \<le> 1 \<and> (\<Sum>x\<in>?D. u x *\<^sub>R x) = x" | |
| 1300 | unfolding substdbasis_expansion_unique[OF assms] | |
| 1301 | by (rule_tac x="inner x" in exI) auto | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1302 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1303 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1304 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1305 | lemma std_simplex: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1306 | "convex hull (insert 0 Basis) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1307 |     {x::'a::euclidean_space. (\<forall>i\<in>Basis. 0 \<le> x\<bullet>i) \<and> sum (\<lambda>i. x\<bullet>i) Basis \<le> 1}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1308 | using substd_simplex[of Basis] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1309 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1310 | lemma interior_std_simplex: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1311 | "interior (convex hull (insert 0 Basis)) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1312 |     {x::'a::euclidean_space. (\<forall>i\<in>Basis. 0 < x\<bullet>i) \<and> sum (\<lambda>i. x\<bullet>i) Basis < 1}"
 | 
| 68056 | 1313 | unfolding set_eq_iff mem_interior std_simplex | 
| 1314 | proof (intro allI iffI CollectI; clarify) | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1315 | fix x :: 'a | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1316 | fix e | 
| 68056 | 1317 |   assume "e > 0" and as: "ball x e \<subseteq> {x. (\<forall>i\<in>Basis. 0 \<le> x \<bullet> i) \<and> sum ((\<bullet>) x) Basis \<le> 1}"
 | 
| 1318 | show "(\<forall>i\<in>Basis. 0 < x \<bullet> i) \<and> sum ((\<bullet>) x) Basis < 1" | |
| 1319 | proof safe | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1320 | fix i :: 'a | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1321 | assume i: "i \<in> Basis" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1322 | then show "0 < x \<bullet> i" | 
| 68056 | 1323 | using as[THEN subsetD[where c="x - (e / 2) *\<^sub>R i"]] and \<open>e > 0\<close> | 
| 1324 | by (force simp add: inner_simps) | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1325 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1326 | have **: "dist x (x + (e / 2) *\<^sub>R (SOME i. i\<in>Basis)) < e" using \<open>e > 0\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1327 | unfolding dist_norm | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1328 | by (auto intro!: mult_strict_left_mono simp: SOME_Basis) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1329 | have "\<And>i. i \<in> Basis \<Longrightarrow> (x + (e / 2) *\<^sub>R (SOME i. i\<in>Basis)) \<bullet> i = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1330 | x\<bullet>i + (if i = (SOME i. i\<in>Basis) then e/2 else 0)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1331 | by (auto simp: SOME_Basis inner_Basis inner_simps) | 
| 67399 | 1332 | then have *: "sum ((\<bullet>) (x + (e / 2) *\<^sub>R (SOME i. i\<in>Basis))) Basis = | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1333 | sum (\<lambda>i. x\<bullet>i + (if (SOME i. i\<in>Basis) = i then e/2 else 0)) Basis" | 
| 68056 | 1334 | by (auto simp: intro!: sum.cong) | 
| 67399 | 1335 | have "sum ((\<bullet>) x) Basis < sum ((\<bullet>) (x + (e / 2) *\<^sub>R (SOME i. i\<in>Basis))) Basis" | 
| 68056 | 1336 | using \<open>e > 0\<close> DIM_positive by (auto simp: SOME_Basis sum.distrib *) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1337 | also have "\<dots> \<le> 1" | 
| 68056 | 1338 | using ** as by force | 
| 67399 | 1339 | finally show "sum ((\<bullet>) x) Basis < 1" by auto | 
| 68056 | 1340 | qed | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1341 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1342 | fix x :: 'a | 
| 67399 | 1343 | assume as: "\<forall>i\<in>Basis. 0 < x \<bullet> i" "sum ((\<bullet>) x) Basis < 1" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1344 | obtain a :: 'b where "a \<in> UNIV" using UNIV_witness .. | 
| 67399 | 1345 |   let ?d = "(1 - sum ((\<bullet>) x) Basis) / real (DIM('a))"
 | 
| 68056 | 1346 |   show "\<exists>e>0. ball x e \<subseteq> {x. (\<forall>i\<in>Basis. 0 \<le> x \<bullet> i) \<and> sum ((\<bullet>) x) Basis \<le> 1}"
 | 
| 1347 | proof (rule_tac x="min (Min (((\<bullet>) x) ` Basis)) D" for D in exI, intro conjI subsetI CollectI) | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1348 | fix y | 
| 68056 | 1349 | assume y: "y \<in> ball x (min (Min ((\<bullet>) x ` Basis)) ?d)" | 
| 67399 | 1350 | have "sum ((\<bullet>) y) Basis \<le> sum (\<lambda>i. x\<bullet>i + ?d) Basis" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1351 | proof (rule sum_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1352 | fix i :: 'a | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1353 | assume i: "i \<in> Basis" | 
| 68056 | 1354 | have "\<bar>y\<bullet>i - x\<bullet>i\<bar> \<le> norm (y - x)" | 
| 1355 | by (metis Basis_le_norm i inner_commute inner_diff_right) | |
| 1356 | also have "... < ?d" | |
| 1357 | using y by (simp add: dist_norm norm_minus_commute) | |
| 1358 | finally have "\<bar>y\<bullet>i - x\<bullet>i\<bar> < ?d" . | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1359 | then show "y \<bullet> i \<le> x \<bullet> i + ?d" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1360 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1361 | also have "\<dots> \<le> 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1362 | unfolding sum.distrib sum_constant | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1363 | by (auto simp add: Suc_le_eq) | 
| 67399 | 1364 | finally show "sum ((\<bullet>) y) Basis \<le> 1" . | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1365 | show "(\<forall>i\<in>Basis. 0 \<le> y \<bullet> i)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1366 | proof safe | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1367 | fix i :: 'a | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1368 | assume i: "i \<in> Basis" | 
| 68796 
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
 haftmann parents: 
68607diff
changeset | 1369 | have "norm (x - y) < Min (((\<bullet>) x) ` Basis)" | 
| 68056 | 1370 | using y by (auto simp: dist_norm less_eq_real_def) | 
| 1371 | also have "... \<le> x\<bullet>i" | |
| 1372 | using i by auto | |
| 1373 | finally have "norm (x - y) < x\<bullet>i" . | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1374 | then show "0 \<le> y\<bullet>i" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1375 | using Basis_le_norm[OF i, of "x - y"] and as(1)[rule_format, OF i] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1376 | by (auto simp: inner_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1377 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1378 | next | 
| 67399 | 1379 | have "Min (((\<bullet>) x) ` Basis) > 0" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1380 | using as by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1381 | moreover have "?d > 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1382 | using as by (auto simp: Suc_le_eq) | 
| 67399 | 1383 |     ultimately show "0 < min (Min ((\<bullet>) x ` Basis)) ((1 - sum ((\<bullet>) x) Basis) / real DIM('a))"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1384 | by linarith | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1385 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1386 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1387 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1388 | lemma interior_std_simplex_nonempty: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1389 | obtains a :: "'a::euclidean_space" where | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1390 | "a \<in> interior(convex hull (insert 0 Basis))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1391 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1392 | let ?D = "Basis :: 'a set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1393 |   let ?a = "sum (\<lambda>b::'a. inverse (2 * real DIM('a)) *\<^sub>R b) Basis"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1394 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1395 | fix i :: 'a | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1396 | assume i: "i \<in> Basis" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1397 |     have "?a \<bullet> i = inverse (2 * real DIM('a))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1398 |       by (rule trans[of _ "sum (\<lambda>j. if i = j then inverse (2 * real DIM('a)) else 0) ?D"])
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1399 | (simp_all add: sum.If_cases i) } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1400 | note ** = this | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1401 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1402 | apply (rule that[of ?a]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1403 | unfolding interior_std_simplex mem_Collect_eq | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1404 | proof safe | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1405 | fix i :: 'a | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1406 | assume i: "i \<in> Basis" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1407 | show "0 < ?a \<bullet> i" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1408 | unfolding **[OF i] by (auto simp add: Suc_le_eq DIM_positive) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1409 | next | 
| 67399 | 1410 |     have "sum ((\<bullet>) ?a) ?D = sum (\<lambda>i. inverse (2 * real DIM('a))) ?D"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1411 | apply (rule sum.cong) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1412 | apply rule | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1413 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1414 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1415 | also have "\<dots> < 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1416 | unfolding sum_constant divide_inverse[symmetric] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1417 | by (auto simp add: field_simps) | 
| 67399 | 1418 | finally show "sum ((\<bullet>) ?a) ?D < 1" by auto | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1419 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1420 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1421 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1422 | lemma rel_interior_substd_simplex: | 
| 68056 | 1423 | assumes D: "D \<subseteq> Basis" | 
| 1424 | shows "rel_interior (convex hull (insert 0 D)) = | |
| 1425 |     {x::'a::euclidean_space. (\<forall>i\<in>D. 0 < x\<bullet>i) \<and> (\<Sum>i\<in>D. x\<bullet>i) < 1 \<and> (\<forall>i\<in>Basis. i \<notin> D \<longrightarrow> x\<bullet>i = 0)}"
 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1426 | (is "rel_interior (convex hull (insert 0 ?p)) = ?s") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1427 | proof - | 
| 68056 | 1428 | have "finite D" | 
| 1429 | using D finite_Basis finite_subset by blast | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1430 | show ?thesis | 
| 68056 | 1431 |   proof (cases "D = {}")
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1432 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1433 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1434 | using rel_interior_sing using euclidean_eq_iff[of _ 0] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1435 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1436 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1437 | have h0: "affine hull (convex hull (insert 0 ?p)) = | 
| 68056 | 1438 |       {x::'a::euclidean_space. (\<forall>i\<in>Basis. i \<notin> D \<longrightarrow> x\<bullet>i = 0)}"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1439 | using affine_hull_convex_hull affine_hull_substd_basis assms by auto | 
| 68056 | 1440 | have aux: "\<And>x::'a. \<forall>i\<in>Basis. (\<forall>i\<in>D. 0 \<le> x\<bullet>i) \<and> (\<forall>i\<in>Basis. i \<notin> D \<longrightarrow> x\<bullet>i = 0) \<longrightarrow> 0 \<le> x\<bullet>i" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1441 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1442 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1443 | fix x :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1444 | assume x: "x \<in> rel_interior (convex hull (insert 0 ?p))" | 
| 68056 | 1445 | then obtain e where "e > 0" and | 
| 1446 |         "ball x e \<inter> {xa. (\<forall>i\<in>Basis. i \<notin> D \<longrightarrow> xa\<bullet>i = 0)} \<subseteq> convex hull (insert 0 ?p)"
 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1447 | using mem_rel_interior_ball[of x "convex hull (insert 0 ?p)"] h0 by auto | 
| 68056 | 1448 | then have as [rule_format]: "\<And>y. dist x y < e \<and> (\<forall>i\<in>Basis. i \<notin> D \<longrightarrow> y\<bullet>i = 0) \<longrightarrow> | 
| 1449 | (\<forall>i\<in>D. 0 \<le> y \<bullet> i) \<and> sum ((\<bullet>) y) D \<le> 1" | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1450 | unfolding ball_def unfolding substd_simplex[OF assms] using assms by auto | 
| 68056 | 1451 | have x0: "(\<forall>i\<in>Basis. i \<notin> D \<longrightarrow> x\<bullet>i = 0)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1452 | using x rel_interior_subset substd_simplex[OF assms] by auto | 
| 68056 | 1453 | have "(\<forall>i\<in>D. 0 < x \<bullet> i) \<and> sum ((\<bullet>) x) D < 1 \<and> (\<forall>i\<in>Basis. i \<notin> D \<longrightarrow> x\<bullet>i = 0)" | 
| 1454 | proof (intro conjI ballI) | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1455 | fix i :: 'a | 
| 68056 | 1456 | assume "i \<in> D" | 
| 1457 | then have "\<forall>j\<in>D. 0 \<le> (x - (e / 2) *\<^sub>R i) \<bullet> j" | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1458 | apply - | 
| 68056 | 1459 | apply (rule as[THEN conjunct1]) | 
| 1460 | using D \<open>e > 0\<close> x0 | |
| 1461 | apply (auto simp: dist_norm inner_simps inner_Basis) | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1462 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1463 | then show "0 < x \<bullet> i" | 
| 68056 | 1464 | using \<open>e > 0\<close> \<open>i \<in> D\<close> D by (force simp: inner_simps inner_Basis) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1465 | next | 
| 68056 | 1466 | obtain a where a: "a \<in> D" | 
| 1467 |           using \<open>D \<noteq> {}\<close> by auto
 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1468 | then have **: "dist x (x + (e / 2) *\<^sub>R a) < e" | 
| 68056 | 1469 | using \<open>e > 0\<close> norm_Basis[of a] D | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1470 | unfolding dist_norm | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1471 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1472 | have "\<And>i. i \<in> Basis \<Longrightarrow> (x + (e / 2) *\<^sub>R a) \<bullet> i = x\<bullet>i + (if i = a then e/2 else 0)" | 
| 68056 | 1473 | using a D by (auto simp: inner_simps inner_Basis) | 
| 1474 | then have *: "sum ((\<bullet>) (x + (e / 2) *\<^sub>R a)) D = | |
| 1475 | sum (\<lambda>i. x\<bullet>i + (if a = i then e/2 else 0)) D" | |
| 1476 | using D by (intro sum.cong) auto | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1477 | have "a \<in> Basis" | 
| 68056 | 1478 | using \<open>a \<in> D\<close> D by auto | 
| 1479 | then have h1: "(\<forall>i\<in>Basis. i \<notin> D \<longrightarrow> (x + (e / 2) *\<^sub>R a) \<bullet> i = 0)" | |
| 1480 | using x0 D \<open>a\<in>D\<close> by (auto simp add: inner_add_left inner_Basis) | |
| 1481 | have "sum ((\<bullet>) x) D < sum ((\<bullet>) (x + (e / 2) *\<^sub>R a)) D" | |
| 1482 | using \<open>e > 0\<close> \<open>a \<in> D\<close> \<open>finite D\<close> by (auto simp add: * sum.distrib) | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1483 | also have "\<dots> \<le> 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1484 | using ** h1 as[rule_format, of "x + (e / 2) *\<^sub>R a"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1485 | by auto | 
| 68056 | 1486 | finally show "sum ((\<bullet>) x) D < 1" "\<And>i. i\<in>Basis \<Longrightarrow> i \<notin> D \<longrightarrow> x\<bullet>i = 0" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1487 | using x0 by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1488 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1489 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1490 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1491 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1492 | fix x :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1493 | assume as: "x \<in> ?s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1494 | have "\<forall>i. 0 < x\<bullet>i \<or> 0 = x\<bullet>i \<longrightarrow> 0 \<le> x\<bullet>i" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1495 | by auto | 
| 68056 | 1496 | moreover have "\<forall>i. i \<in> D \<or> i \<notin> D" by auto | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1497 | ultimately | 
| 68056 | 1498 | have "\<forall>i. (\<forall>i\<in>D. 0 < x\<bullet>i) \<and> (\<forall>i. i \<notin> D \<longrightarrow> x\<bullet>i = 0) \<longrightarrow> 0 \<le> x\<bullet>i" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1499 | by metis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1500 | then have h2: "x \<in> convex hull (insert 0 ?p)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1501 | using as assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1502 | unfolding substd_simplex[OF assms] by fastforce | 
| 68056 | 1503 | obtain a where a: "a \<in> D" | 
| 1504 |         using \<open>D \<noteq> {}\<close> by auto
 | |
| 1505 | let ?d = "(1 - sum ((\<bullet>) x) D) / real (card D)" | |
| 1506 |       have "0 < card D" using \<open>D \<noteq> {}\<close> \<open>finite D\<close>
 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1507 | by (simp add: card_gt_0_iff) | 
| 68056 | 1508 | have "Min (((\<bullet>) x) ` D) > 0" | 
| 1509 |         using as \<open>D \<noteq> {}\<close> \<open>finite D\<close> by (simp add: Min_gr_iff)
 | |
| 1510 | moreover have "?d > 0" using as using \<open>0 < card D\<close> by auto | |
| 1511 | ultimately have h3: "min (Min (((\<bullet>) x) ` D)) ?d > 0" | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1512 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1513 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1514 | have "x \<in> rel_interior (convex hull (insert 0 ?p))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1515 | unfolding rel_interior_ball mem_Collect_eq h0 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1516 | apply (rule,rule h2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1517 | unfolding substd_simplex[OF assms] | 
| 68056 | 1518 | apply (rule_tac x="min (Min (((\<bullet>) x) ` D)) ?d" in exI) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1519 | apply (rule, rule h3) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1520 | apply safe | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1521 | unfolding mem_ball | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1522 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1523 | fix y :: 'a | 
| 68056 | 1524 | assume y: "dist x y < min (Min ((\<bullet>) x ` D)) ?d" | 
| 1525 | assume y2: "\<forall>i\<in>Basis. i \<notin> D \<longrightarrow> y\<bullet>i = 0" | |
| 1526 | have "sum ((\<bullet>) y) D \<le> sum (\<lambda>i. x\<bullet>i + ?d) D" | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1527 | proof (rule sum_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1528 | fix i | 
| 68056 | 1529 | assume "i \<in> D" | 
| 1530 | with D have i: "i \<in> Basis" | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1531 | by auto | 
| 68056 | 1532 | have "\<bar>y\<bullet>i - x\<bullet>i\<bar> \<le> norm (y - x)" | 
| 1533 | by (metis i inner_commute inner_diff_right norm_bound_Basis_le order_refl) | |
| 1534 | also have "... < ?d" | |
| 1535 | by (metis dist_norm min_less_iff_conj norm_minus_commute y) | |
| 1536 | finally have "\<bar>y\<bullet>i - x\<bullet>i\<bar> < ?d" . | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1537 | then show "y \<bullet> i \<le> x \<bullet> i + ?d" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1538 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1539 | also have "\<dots> \<le> 1" | 
| 68056 | 1540 | unfolding sum.distrib sum_constant using \<open>0 < card D\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1541 | by auto | 
| 68056 | 1542 | finally show "sum ((\<bullet>) y) D \<le> 1" . | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1543 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1544 | fix i :: 'a | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1545 | assume i: "i \<in> Basis" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1546 | then show "0 \<le> y\<bullet>i" | 
| 68056 | 1547 | proof (cases "i\<in>D") | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1548 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1549 | have "norm (x - y) < x\<bullet>i" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1550 | using y[unfolded min_less_iff_conj dist_norm, THEN conjunct1] | 
| 68056 | 1551 | using Min_gr_iff[of "(\<bullet>) x ` D" "norm (x - y)"] \<open>0 < card D\<close> \<open>i \<in> D\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1552 | by (simp add: card_gt_0_iff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1553 | then show "0 \<le> y\<bullet>i" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1554 | using Basis_le_norm[OF i, of "x - y"] and as(1)[rule_format] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1555 | by (auto simp: inner_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1556 | qed (insert y2, auto) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1557 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1558 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1559 | ultimately have | 
| 68056 | 1560 | "\<And>x. x \<in> rel_interior (convex hull insert 0 D) \<longleftrightarrow> | 
| 1561 |         x \<in> {x. (\<forall>i\<in>D. 0 < x \<bullet> i) \<and> sum ((\<bullet>) x) D < 1 \<and> (\<forall>i\<in>Basis. i \<notin> D \<longrightarrow> x \<bullet> i = 0)}"
 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1562 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1563 | then show ?thesis by (rule set_eqI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1564 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1565 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1566 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1567 | lemma rel_interior_substd_simplex_nonempty: | 
| 68056 | 1568 |   assumes "D \<noteq> {}"
 | 
| 1569 | and "D \<subseteq> Basis" | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1570 | obtains a :: "'a::euclidean_space" | 
| 68056 | 1571 | where "a \<in> rel_interior (convex hull (insert 0 D))" | 
| 1572 | proof - | |
| 1573 | let ?D = D | |
| 1574 | let ?a = "sum (\<lambda>b::'a::euclidean_space. inverse (2 * real (card D)) *\<^sub>R b) ?D" | |
| 1575 | have "finite D" | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1576 | apply (rule finite_subset) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1577 | using assms(2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1578 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1579 | done | 
| 68056 | 1580 | then have d1: "0 < real (card D)" | 
| 1581 |     using \<open>D \<noteq> {}\<close> by auto
 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1582 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1583 | fix i | 
| 68056 | 1584 | assume "i \<in> D" | 
| 1585 | have "?a \<bullet> i = inverse (2 * real (card D))" | |
| 1586 | apply (rule trans[of _ "sum (\<lambda>j. if i = j then inverse (2 * real (card D)) else 0) ?D"]) | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1587 | unfolding inner_sum_left | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1588 | apply (rule sum.cong) | 
| 68056 | 1589 | using \<open>i \<in> D\<close> \<open>finite D\<close> sum.delta'[of D i "(\<lambda>k. inverse (2 * real (card D)))"] | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1590 | d1 assms(2) | 
| 69712 | 1591 | by (auto simp: inner_Basis rev_subsetD[OF _ assms(2)]) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1592 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1593 | note ** = this | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1594 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1595 | apply (rule that[of ?a]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1596 | unfolding rel_interior_substd_simplex[OF assms(2)] mem_Collect_eq | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1597 | proof safe | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1598 | fix i | 
| 68056 | 1599 | assume "i \<in> D" | 
| 1600 | have "0 < inverse (2 * real (card D))" | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1601 | using d1 by auto | 
| 68056 | 1602 | also have "\<dots> = ?a \<bullet> i" using **[of i] \<open>i \<in> D\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1603 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1604 | finally show "0 < ?a \<bullet> i" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1605 | next | 
| 68056 | 1606 | have "sum ((\<bullet>) ?a) ?D = sum (\<lambda>i. inverse (2 * real (card D))) ?D" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1607 | by (rule sum.cong) (rule refl, rule **) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1608 | also have "\<dots> < 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1609 | unfolding sum_constant divide_real_def[symmetric] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1610 | by (auto simp add: field_simps) | 
| 67399 | 1611 | finally show "sum ((\<bullet>) ?a) ?D < 1" by auto | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1612 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1613 | fix i | 
| 68056 | 1614 | assume "i \<in> Basis" and "i \<notin> D" | 
| 1615 | have "?a \<in> span D" | |
| 1616 | proof (rule span_sum[of D "(\<lambda>b. b /\<^sub>R (2 * real (card D)))" D]) | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1617 |       {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1618 | fix x :: "'a::euclidean_space" | 
| 68056 | 1619 | assume "x \<in> D" | 
| 1620 | then have "x \<in> span D" | |
| 68074 | 1621 | using span_base[of _ "D"] by auto | 
| 68056 | 1622 | then have "x /\<^sub>R (2 * real (card D)) \<in> span D" | 
| 1623 | using span_mul[of x "D" "(inverse (real (card D)) / 2)"] by auto | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1624 | } | 
| 68056 | 1625 | then show "\<And>x. x\<in>D \<Longrightarrow> x /\<^sub>R (2 * real (card D)) \<in> span D" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1626 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1627 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1628 | then show "?a \<bullet> i = 0 " | 
| 68056 | 1629 | using \<open>i \<notin> D\<close> unfolding span_substd_basis[OF assms(2)] using \<open>i \<in> Basis\<close> by auto | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1630 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1631 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1632 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1633 | |
| 70136 | 1634 | subsection\<^marker>\<open>tag unimportant\<close> \<open>Relative interior of convex set\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1635 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1636 | lemma rel_interior_convex_nonempty_aux: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1637 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1638 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1639 | and "0 \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1640 |   shows "rel_interior S \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1641 | proof (cases "S = {0}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1642 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1643 | then show ?thesis using rel_interior_sing by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1644 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1645 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1646 | obtain B where B: "independent B \<and> B \<le> S \<and> S \<le> span B \<and> card B = dim S" | 
| 68069 
36209dfb981e
tidying up and using real induction methods
 paulson <lp15@cam.ac.uk> parents: 
68056diff
changeset | 1647 | using basis_exists[of S] by metis | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1648 |   then have "B \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1649 |     using B assms \<open>S \<noteq> {0}\<close> span_empty by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1650 | have "insert 0 B \<le> span B" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 1651 | using subspace_span[of B] subspace_0[of "span B"] | 
| 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 1652 | span_superset by auto | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1653 | then have "span (insert 0 B) \<le> span B" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1654 | using span_span[of B] span_mono[of "insert 0 B" "span B"] by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1655 | then have "convex hull insert 0 B \<le> span B" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1656 | using convex_hull_subset_span[of "insert 0 B"] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1657 | then have "span (convex hull insert 0 B) \<le> span B" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 1658 | using span_span[of B] | 
| 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 1659 | span_mono[of "convex hull insert 0 B" "span B"] by blast | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1660 | then have *: "span (convex hull insert 0 B) = span B" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1661 | using span_mono[of B "convex hull insert 0 B"] hull_subset[of "insert 0 B"] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1662 | then have "span (convex hull insert 0 B) = span S" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 1663 | using B span_mono[of B S] span_mono[of S "span B"] | 
| 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 1664 | span_span[of B] by auto | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1665 | moreover have "0 \<in> affine hull (convex hull insert 0 B)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1666 | using hull_subset[of "convex hull insert 0 B"] hull_subset[of "insert 0 B"] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1667 | ultimately have **: "affine hull (convex hull insert 0 B) = affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1668 | using affine_hull_span_0[of "convex hull insert 0 B"] affine_hull_span_0[of "S"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1669 | assms hull_subset[of S] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1670 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1671 | obtain d and f :: "'n \<Rightarrow> 'n" where | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1672 | fd: "card d = card B" "linear f" "f ` B = d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1673 |       "f ` span B = {x. \<forall>i\<in>Basis. i \<notin> d \<longrightarrow> x \<bullet> i = (0::real)} \<and> inj_on f (span B)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1674 | and d: "d \<subseteq> Basis" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1675 | using basis_to_substdbasis_subspace_isomorphism[of B,OF _ ] B by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1676 | then have "bounded_linear f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1677 | using linear_conv_bounded_linear by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1678 |   have "d \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1679 |     using fd B \<open>B \<noteq> {}\<close> by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1680 | have "insert 0 d = f ` (insert 0 B)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1681 | using fd linear_0 by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1682 | then have "(convex hull (insert 0 d)) = f ` (convex hull (insert 0 B))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1683 | using convex_hull_linear_image[of f "(insert 0 d)"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1684 | convex_hull_linear_image[of f "(insert 0 B)"] \<open>linear f\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1685 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1686 | moreover have "rel_interior (f ` (convex hull insert 0 B)) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1687 | f ` rel_interior (convex hull insert 0 B)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1688 | apply (rule rel_interior_injective_on_span_linear_image[of f "(convex hull insert 0 B)"]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1689 | using \<open>bounded_linear f\<close> fd * | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1690 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1691 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1692 |   ultimately have "rel_interior (convex hull insert 0 B) \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1693 |     using rel_interior_substd_simplex_nonempty[OF \<open>d \<noteq> {}\<close> d]
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1694 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1695 | apply blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1696 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1697 | moreover have "convex hull (insert 0 B) \<subseteq> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1698 | using B assms hull_mono[of "insert 0 B" "S" "convex"] convex_hull_eq | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1699 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1700 | ultimately show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1701 | using subset_rel_interior[of "convex hull insert 0 B" S] ** by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1702 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1703 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1704 | lemma rel_interior_eq_empty: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1705 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1706 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1707 |   shows "rel_interior S = {} \<longleftrightarrow> S = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1708 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1709 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1710 |     assume "S \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1711 | then obtain a where "a \<in> S" by auto | 
| 67399 | 1712 | then have "0 \<in> (+) (-a) ` S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1713 | using assms exI[of "(\<lambda>x. x \<in> S \<and> - a + x = 0)" a] by auto | 
| 67399 | 1714 |     then have "rel_interior ((+) (-a) ` S) \<noteq> {}"
 | 
| 1715 | using rel_interior_convex_nonempty_aux[of "(+) (-a) ` S"] | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1716 | convex_translation[of S "-a"] assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1717 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1718 |     then have "rel_interior S \<noteq> {}"
 | 
| 69661 | 1719 | using rel_interior_translation [of "- a"] by simp | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1720 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1721 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1722 | using rel_interior_empty by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1723 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1724 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1725 | lemma interior_simplex_nonempty: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1726 | fixes S :: "'N :: euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1727 |   assumes "independent S" "finite S" "card S = DIM('N)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1728 | obtains a where "a \<in> interior (convex hull (insert 0 S))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1729 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1730 | have "affine hull (insert 0 S) = UNIV" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 1731 | by (simp add: hull_inc affine_hull_span_0 dim_eq_full[symmetric] | 
| 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 1732 | assms(1) assms(3) dim_eq_card_independent) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1733 |   moreover have "rel_interior (convex hull insert 0 S) \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1734 | using rel_interior_eq_empty [of "convex hull (insert 0 S)"] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1735 |   ultimately have "interior (convex hull insert 0 S) \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1736 | by (simp add: rel_interior_interior) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1737 | with that show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1738 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1739 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1740 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1741 | lemma convex_rel_interior: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1742 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1743 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1744 | shows "convex (rel_interior S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1745 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1746 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1747 | fix x y and u :: real | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1748 | assume assm: "x \<in> rel_interior S" "y \<in> rel_interior S" "0 \<le> u" "u \<le> 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1749 | then have "x \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1750 | using rel_interior_subset by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1751 | have "x - u *\<^sub>R (x-y) \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1752 | proof (cases "0 = u") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1753 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1754 | then have "0 < u" using assm by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1755 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1756 | using assm rel_interior_convex_shrink[of S y x u] assms \<open>x \<in> S\<close> by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1757 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1758 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1759 | then show ?thesis using assm by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1760 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1761 | then have "(1 - u) *\<^sub>R x + u *\<^sub>R y \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1762 | by (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1763 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1764 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1765 | unfolding convex_alt by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1766 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1767 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1768 | lemma convex_closure_rel_interior: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1769 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1770 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1771 | shows "closure (rel_interior S) = closure S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1772 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1773 | have h1: "closure (rel_interior S) \<le> closure S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1774 | using closure_mono[of "rel_interior S" S] rel_interior_subset[of S] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1775 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1776 |   proof (cases "S = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1777 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1778 | then obtain a where a: "a \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1779 | using rel_interior_eq_empty assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1780 |     { fix x
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1781 | assume x: "x \<in> closure S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1782 |       {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1783 | assume "x = a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1784 | then have "x \<in> closure (rel_interior S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1785 | using a unfolding closure_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1786 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1787 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1788 |       {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1789 | assume "x \<noteq> a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1790 |          {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1791 | fix e :: real | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1792 | assume "e > 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1793 | define e1 where "e1 = min 1 (e/norm (x - a))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1794 | then have e1: "e1 > 0" "e1 \<le> 1" "e1 * norm (x - a) \<le> e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1795 | using \<open>x \<noteq> a\<close> \<open>e > 0\<close> le_divide_eq[of e1 e "norm (x - a)"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1796 | by simp_all | 
| 67613 | 1797 | then have *: "x - e1 *\<^sub>R (x - a) \<in> rel_interior S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1798 | using rel_interior_closure_convex_shrink[of S a x e1] assms x a e1_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1799 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1800 | have "\<exists>y. y \<in> rel_interior S \<and> y \<noteq> x \<and> dist y x \<le> e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1801 | apply (rule_tac x="x - e1 *\<^sub>R (x - a)" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1802 | using * e1 dist_norm[of "x - e1 *\<^sub>R (x - a)" x] \<open>x \<noteq> a\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1803 | apply simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1804 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1805 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1806 | then have "x islimpt rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1807 | unfolding islimpt_approachable_le by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1808 | then have "x \<in> closure(rel_interior S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1809 | unfolding closure_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1810 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1811 | ultimately have "x \<in> closure(rel_interior S)" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1812 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1813 | then show ?thesis using h1 by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1814 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1815 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1816 |     then have "rel_interior S = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1817 | using rel_interior_empty by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1818 |     then have "closure (rel_interior S) = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1819 | using closure_empty by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1820 | with True show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1821 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1822 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1823 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1824 | lemma rel_interior_same_affine_hull: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1825 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1826 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1827 | shows "affine hull (rel_interior S) = affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1828 | by (metis assms closure_same_affine_hull convex_closure_rel_interior) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1829 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1830 | lemma rel_interior_aff_dim: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1831 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1832 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1833 | shows "aff_dim (rel_interior S) = aff_dim S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1834 | by (metis aff_dim_affine_hull2 assms rel_interior_same_affine_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1835 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1836 | lemma rel_interior_rel_interior: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1837 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1838 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1839 | shows "rel_interior (rel_interior S) = rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1840 | proof - | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 1841 | have "openin (top_of_set (affine hull (rel_interior S))) (rel_interior S)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1842 | using openin_rel_interior[of S] rel_interior_same_affine_hull[of S] assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1843 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1844 | using rel_interior_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1845 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1846 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1847 | lemma rel_interior_rel_open: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1848 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1849 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1850 | shows "rel_open (rel_interior S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1851 | unfolding rel_open_def using rel_interior_rel_interior assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1852 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1853 | lemma convex_rel_interior_closure_aux: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1854 | fixes x y z :: "'n::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1855 | assumes "0 < a" "0 < b" "(a + b) *\<^sub>R z = a *\<^sub>R x + b *\<^sub>R y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1856 | obtains e where "0 < e" "e \<le> 1" "z = y - e *\<^sub>R (y - x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1857 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1858 | define e where "e = a / (a + b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1859 | have "z = (1 / (a + b)) *\<^sub>R ((a + b) *\<^sub>R z)" | 
| 68056 | 1860 | using assms by (simp add: eq_vector_fraction_iff) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1861 | also have "\<dots> = (1 / (a + b)) *\<^sub>R (a *\<^sub>R x + b *\<^sub>R y)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1862 | using assms scaleR_cancel_left[of "1/(a+b)" "(a + b) *\<^sub>R z" "a *\<^sub>R x + b *\<^sub>R y"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1863 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1864 | also have "\<dots> = y - e *\<^sub>R (y-x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1865 | using e_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1866 | apply (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1867 | using scaleR_left_distrib[of "a/(a+b)" "b/(a+b)" y] assms add_divide_distrib[of a b "a+b"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1868 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1869 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1870 | finally have "z = y - e *\<^sub>R (y-x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1871 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1872 | moreover have "e > 0" using e_def assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1873 | moreover have "e \<le> 1" using e_def assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1874 | ultimately show ?thesis using that[of e] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1875 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1876 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1877 | lemma convex_rel_interior_closure: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1878 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1879 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1880 | shows "rel_interior (closure S) = rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1881 | proof (cases "S = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1882 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1883 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1884 | using assms rel_interior_eq_empty by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1885 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1886 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1887 | have "rel_interior (closure S) \<supseteq> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1888 | using subset_rel_interior[of S "closure S"] closure_same_affine_hull closure_subset | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1889 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1890 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1891 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1892 | fix z | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1893 | assume z: "z \<in> rel_interior (closure S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1894 | obtain x where x: "x \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1895 |       using \<open>S \<noteq> {}\<close> assms rel_interior_eq_empty by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1896 | have "z \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1897 | proof (cases "x = z") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1898 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1899 | then show ?thesis using x by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1900 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1901 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1902 | obtain e where e: "e > 0" "cball z e \<inter> affine hull closure S \<le> closure S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1903 | using z rel_interior_cball[of "closure S"] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1904 | hence *: "0 < e/norm(z-x)" using e False by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1905 | define y where "y = z + (e/norm(z-x)) *\<^sub>R (z-x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1906 | have yball: "y \<in> cball z e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1907 | using mem_cball y_def dist_norm[of z y] e by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1908 | have "x \<in> affine hull closure S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1909 | using x rel_interior_subset_closure hull_inc[of x "closure S"] by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1910 | moreover have "z \<in> affine hull closure S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1911 | using z rel_interior_subset hull_subset[of "closure S"] by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1912 | ultimately have "y \<in> affine hull closure S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1913 | using y_def affine_affine_hull[of "closure S"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1914 | mem_affine_3_minus [of "affine hull closure S" z z x "e/norm(z-x)"] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1915 | then have "y \<in> closure S" using e yball by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1916 | have "(1 + (e/norm(z-x))) *\<^sub>R z = (e/norm(z-x)) *\<^sub>R x + y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1917 | using y_def by (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1918 | then obtain e1 where "0 < e1" "e1 \<le> 1" "z = y - e1 *\<^sub>R (y - x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1919 | using * convex_rel_interior_closure_aux[of "e / norm (z - x)" 1 z x y] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1920 | by (auto simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1921 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1922 | using rel_interior_closure_convex_shrink assms x \<open>y \<in> closure S\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1923 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1924 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1925 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1926 | ultimately show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1927 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1928 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1929 | lemma convex_interior_closure: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1930 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1931 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1932 | shows "interior (closure S) = interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1933 | using closure_aff_dim[of S] interior_rel_interior_gen[of S] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1934 | interior_rel_interior_gen[of "closure S"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1935 | convex_rel_interior_closure[of S] assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1936 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1937 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1938 | lemma closure_eq_rel_interior_eq: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1939 | fixes S1 S2 :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1940 | assumes "convex S1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1941 | and "convex S2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1942 | shows "closure S1 = closure S2 \<longleftrightarrow> rel_interior S1 = rel_interior S2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1943 | by (metis convex_rel_interior_closure convex_closure_rel_interior assms) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1944 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1945 | lemma closure_eq_between: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1946 | fixes S1 S2 :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1947 | assumes "convex S1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1948 | and "convex S2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1949 | shows "closure S1 = closure S2 \<longleftrightarrow> rel_interior S1 \<le> S2 \<and> S2 \<subseteq> closure S1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1950 | (is "?A \<longleftrightarrow> ?B") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1951 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1952 | assume ?A | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1953 | then show ?B | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1954 | by (metis assms closure_subset convex_rel_interior_closure rel_interior_subset) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1955 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1956 | assume ?B | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1957 | then have "closure S1 \<subseteq> closure S2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1958 | by (metis assms(1) convex_closure_rel_interior closure_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1959 | moreover from \<open>?B\<close> have "closure S1 \<supseteq> closure S2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1960 | by (metis closed_closure closure_minimal) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1961 | ultimately show ?A .. | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1962 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1963 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1964 | lemma open_inter_closure_rel_interior: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1965 | fixes S A :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1966 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1967 | and "open A" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1968 |   shows "A \<inter> closure S = {} \<longleftrightarrow> A \<inter> rel_interior S = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1969 | by (metis assms convex_closure_rel_interior open_Int_closure_eq_empty) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1970 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1971 | lemma rel_interior_open_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1972 | fixes a :: "'a :: euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1973 | shows "rel_interior(open_segment a b) = open_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1974 | proof (cases "a = b") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1975 | case True then show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1976 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1977 | case False then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1978 | apply (simp add: rel_interior_eq openin_open) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1979 | apply (rule_tac x="ball (inverse 2 *\<^sub>R (a + b)) (norm(b - a) / 2)" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1980 | apply (simp add: open_segment_as_ball) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1981 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1982 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1983 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1984 | lemma rel_interior_closed_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1985 | fixes a :: "'a :: euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1986 | shows "rel_interior(closed_segment a b) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1987 |          (if a = b then {a} else open_segment a b)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1988 | proof (cases "a = b") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1989 | case True then show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1990 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1991 | case False then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1992 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1993 | (metis closure_open_segment convex_open_segment convex_rel_interior_closure | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1994 | rel_interior_open_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1995 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1996 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1997 | lemmas rel_interior_segment = rel_interior_closed_segment rel_interior_open_segment | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1998 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 1999 | lemma starlike_convex_tweak_boundary_points: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2000 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2001 |   assumes "convex S" "S \<noteq> {}" and ST: "rel_interior S \<subseteq> T" and TS: "T \<subseteq> closure S"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2002 | shows "starlike T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2003 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2004 |   have "rel_interior S \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2005 | by (simp add: assms rel_interior_eq_empty) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2006 | then obtain a where a: "a \<in> rel_interior S" by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2007 | with ST have "a \<in> T" by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2008 | have *: "\<And>x. x \<in> T \<Longrightarrow> open_segment a x \<subseteq> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2009 | apply (rule rel_interior_closure_convex_segment [OF \<open>convex S\<close> a]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2010 | using assms by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2011 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2012 | unfolding starlike_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2013 | apply (rule bexI [OF _ \<open>a \<in> T\<close>]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2014 | apply (simp add: closed_segment_eq_open) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2015 | apply (intro conjI ballI a \<open>a \<in> T\<close> rel_interior_closure_convex_segment [OF \<open>convex S\<close> a]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2016 | apply (simp add: order_trans [OF * ST]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2017 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2018 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2019 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2020 | subsection\<open>The relative frontier of a set\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2021 | |
| 70136 | 2022 | definition\<^marker>\<open>tag important\<close> "rel_frontier S = closure S - rel_interior S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2023 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2024 | lemma rel_frontier_empty [simp]: "rel_frontier {} = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2025 | by (simp add: rel_frontier_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2026 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2027 | lemma rel_frontier_eq_empty: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2028 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2029 |     shows "rel_frontier S = {} \<longleftrightarrow> affine S"
 | 
| 68056 | 2030 | unfolding rel_frontier_def | 
| 2031 | using rel_interior_subset_closure by (auto simp add: rel_interior_eq_closure [symmetric]) | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2032 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2033 | lemma rel_frontier_sing [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2034 | fixes a :: "'n::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2035 |     shows "rel_frontier {a} = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2036 | by (simp add: rel_frontier_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2037 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2038 | lemma rel_frontier_affine_hull: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2039 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2040 | shows "rel_frontier S \<subseteq> affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2041 | using closure_affine_hull rel_frontier_def by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2042 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2043 | lemma rel_frontier_cball [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2044 | fixes a :: "'n::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2045 |     shows "rel_frontier(cball a r) = (if r = 0 then {} else sphere a r)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2046 | proof (cases rule: linorder_cases [of r 0]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2047 | case less then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2048 | by (force simp: sphere_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2049 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2050 | case equal then show ?thesis by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2051 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2052 | case greater then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2053 | apply simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2054 | by (metis centre_in_ball empty_iff frontier_cball frontier_def interior_cball interior_rel_interior_gen rel_frontier_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2055 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2056 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2057 | lemma rel_frontier_translation: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2058 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2059 | shows "rel_frontier((\<lambda>x. a + x) ` S) = (\<lambda>x. a + x) ` (rel_frontier S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2060 | by (simp add: rel_frontier_def translation_diff rel_interior_translation closure_translation) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2061 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2062 | lemma closed_affine_hull [iff]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2063 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2064 | shows "closed (affine hull S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2065 | by (metis affine_affine_hull affine_closed) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2066 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2067 | lemma rel_frontier_nonempty_interior: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2068 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2069 |   shows "interior S \<noteq> {} \<Longrightarrow> rel_frontier S = frontier S"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2070 | by (metis frontier_def interior_rel_interior_gen rel_frontier_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2071 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2072 | lemma rel_frontier_frontier: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2073 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2074 | shows "affine hull S = UNIV \<Longrightarrow> rel_frontier S = frontier S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2075 | by (simp add: frontier_def rel_frontier_def rel_interior_interior) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2076 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2077 | lemma closest_point_in_rel_frontier: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2078 |    "\<lbrakk>closed S; S \<noteq> {}; x \<in> affine hull S - rel_interior S\<rbrakk>
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2079 | \<Longrightarrow> closest_point S x \<in> rel_frontier S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2080 | by (simp add: closest_point_in_rel_interior closest_point_in_set rel_frontier_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2081 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2082 | lemma closed_rel_frontier [iff]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2083 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2084 | shows "closed (rel_frontier S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2085 | proof - | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 2086 | have *: "closedin (top_of_set (affine hull S)) (closure S - rel_interior S)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2087 | by (simp add: closed_subset closedin_diff closure_affine_hull openin_rel_interior) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2088 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2089 | apply (rule closedin_closed_trans[of "affine hull S" "rel_frontier S"]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2090 | unfolding rel_frontier_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2091 | using * closed_affine_hull | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2092 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2093 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2094 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2095 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2096 | lemma closed_rel_boundary: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2097 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2098 | shows "closed S \<Longrightarrow> closed(S - rel_interior S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2099 | by (metis closed_rel_frontier closure_closed rel_frontier_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2100 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2101 | lemma compact_rel_boundary: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2102 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2103 | shows "compact S \<Longrightarrow> compact(S - rel_interior S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2104 | by (metis bounded_diff closed_rel_boundary closure_eq compact_closure compact_imp_closed) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2105 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2106 | lemma bounded_rel_frontier: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2107 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2108 | shows "bounded S \<Longrightarrow> bounded(rel_frontier S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2109 | by (simp add: bounded_closure bounded_diff rel_frontier_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2110 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2111 | lemma compact_rel_frontier_bounded: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2112 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2113 | shows "bounded S \<Longrightarrow> compact(rel_frontier S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2114 | using bounded_rel_frontier closed_rel_frontier compact_eq_bounded_closed by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2115 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2116 | lemma compact_rel_frontier: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2117 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2118 | shows "compact S \<Longrightarrow> compact(rel_frontier S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2119 | by (meson compact_eq_bounded_closed compact_rel_frontier_bounded) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2120 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2121 | lemma convex_same_rel_interior_closure: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2122 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2123 | shows "\<lbrakk>convex S; convex T\<rbrakk> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2124 | \<Longrightarrow> rel_interior S = rel_interior T \<longleftrightarrow> closure S = closure T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2125 | by (simp add: closure_eq_rel_interior_eq) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2126 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2127 | lemma convex_same_rel_interior_closure_straddle: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2128 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2129 | shows "\<lbrakk>convex S; convex T\<rbrakk> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2130 | \<Longrightarrow> rel_interior S = rel_interior T \<longleftrightarrow> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2131 | rel_interior S \<subseteq> T \<and> T \<subseteq> closure S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2132 | by (simp add: closure_eq_between convex_same_rel_interior_closure) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2133 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2134 | lemma convex_rel_frontier_aff_dim: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2135 | fixes S1 S2 :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2136 | assumes "convex S1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2137 | and "convex S2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2138 |     and "S2 \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2139 | and "S1 \<le> rel_frontier S2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2140 | shows "aff_dim S1 < aff_dim S2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2141 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2142 | have "S1 \<subseteq> closure S2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2143 | using assms unfolding rel_frontier_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2144 | then have *: "affine hull S1 \<subseteq> affine hull S2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2145 | using hull_mono[of "S1" "closure S2"] closure_same_affine_hull[of S2] by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2146 | then have "aff_dim S1 \<le> aff_dim S2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2147 | using * aff_dim_affine_hull[of S1] aff_dim_affine_hull[of S2] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2148 | aff_dim_subset[of "affine hull S1" "affine hull S2"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2149 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2150 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2151 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2152 | assume eq: "aff_dim S1 = aff_dim S2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2153 |     then have "S1 \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2154 |       using aff_dim_empty[of S1] aff_dim_empty[of S2] \<open>S2 \<noteq> {}\<close> by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2155 | have **: "affine hull S1 = affine hull S2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2156 | apply (rule affine_dim_equal) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2157 | using * affine_affine_hull | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2158 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2159 |        using \<open>S1 \<noteq> {}\<close> hull_subset[of S1]
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2160 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2161 | using eq aff_dim_affine_hull[of S1] aff_dim_affine_hull[of S2] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2162 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2163 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2164 | obtain a where a: "a \<in> rel_interior S1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2165 |       using \<open>S1 \<noteq> {}\<close> rel_interior_eq_empty assms by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2166 | obtain T where T: "open T" "a \<in> T \<inter> S1" "T \<inter> affine hull S1 \<subseteq> S1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2167 | using mem_rel_interior[of a S1] a by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2168 | then have "a \<in> T \<inter> closure S2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2169 | using a assms unfolding rel_frontier_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2170 | then obtain b where b: "b \<in> T \<inter> rel_interior S2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2171 | using open_inter_closure_rel_interior[of S2 T] assms T by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2172 | then have "b \<in> affine hull S1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2173 | using rel_interior_subset hull_subset[of S2] ** by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2174 | then have "b \<in> S1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2175 | using T b by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2176 | then have False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2177 | using b assms unfolding rel_frontier_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2178 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2179 | ultimately show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2180 | using less_le by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2181 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2182 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2183 | lemma convex_rel_interior_if: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2184 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2185 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2186 | and "z \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2187 | shows "\<forall>x\<in>affine hull S. \<exists>m. m > 1 \<and> (\<forall>e. e > 1 \<and> e \<le> m \<longrightarrow> (1 - e) *\<^sub>R x + e *\<^sub>R z \<in> S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2188 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2189 | obtain e1 where e1: "e1 > 0 \<and> cball z e1 \<inter> affine hull S \<subseteq> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2190 | using mem_rel_interior_cball[of z S] assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2191 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2192 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2193 | assume x: "x \<in> affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2194 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2195 | assume "x \<noteq> z" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2196 | define m where "m = 1 + e1/norm(x-z)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2197 | hence "m > 1" using e1 \<open>x \<noteq> z\<close> by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2198 |       {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2199 | fix e | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2200 | assume e: "e > 1 \<and> e \<le> m" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2201 | have "z \<in> affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2202 | using assms rel_interior_subset hull_subset[of S] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2203 | then have *: "(1 - e)*\<^sub>R x + e *\<^sub>R z \<in> affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2204 | using mem_affine[of "affine hull S" x z "(1-e)" e] affine_affine_hull[of S] x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2205 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2206 | have "norm (z + e *\<^sub>R x - (x + e *\<^sub>R z)) = norm ((e - 1) *\<^sub>R (x - z))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2207 | by (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2208 | also have "\<dots> = (e - 1) * norm (x-z)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2209 | using norm_scaleR e by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2210 | also have "\<dots> \<le> (m - 1) * norm (x - z)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2211 | using e mult_right_mono[of _ _ "norm(x-z)"] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2212 | also have "\<dots> = (e1 / norm (x - z)) * norm (x - z)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2213 | using m_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2214 | also have "\<dots> = e1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2215 | using \<open>x \<noteq> z\<close> e1 by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2216 | finally have **: "norm (z + e *\<^sub>R x - (x + e *\<^sub>R z)) \<le> e1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2217 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2218 | have "(1 - e)*\<^sub>R x+ e *\<^sub>R z \<in> cball z e1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2219 | using m_def ** | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2220 | unfolding cball_def dist_norm | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2221 | by (auto simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2222 | then have "(1 - e) *\<^sub>R x+ e *\<^sub>R z \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2223 | using e * e1 by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2224 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2225 | then have "\<exists>m. m > 1 \<and> (\<forall>e. e > 1 \<and> e \<le> m \<longrightarrow> (1 - e) *\<^sub>R x + e *\<^sub>R z \<in> S )" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2226 | using \<open>m> 1 \<close> by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2227 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2228 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2229 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2230 | assume "x = z" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2231 | define m where "m = 1 + e1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2232 | then have "m > 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2233 | using e1 by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2234 |       {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2235 | fix e | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2236 | assume e: "e > 1 \<and> e \<le> m" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2237 | then have "(1 - e) *\<^sub>R x + e *\<^sub>R z \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2238 | using e1 x \<open>x = z\<close> by (auto simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2239 | then have "(1 - e) *\<^sub>R x + e *\<^sub>R z \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2240 | using e by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2241 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2242 | then have "\<exists>m. m > 1 \<and> (\<forall>e. e > 1 \<and> e \<le> m \<longrightarrow> (1 - e) *\<^sub>R x + e *\<^sub>R z \<in> S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2243 | using \<open>m > 1\<close> by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2244 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2245 | ultimately have "\<exists>m. m > 1 \<and> (\<forall>e. e > 1 \<and> e \<le> m \<longrightarrow> (1 - e) *\<^sub>R x + e *\<^sub>R z \<in> S )" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2246 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2247 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2248 | then show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2249 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2250 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2251 | lemma convex_rel_interior_if2: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2252 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2253 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2254 | assumes "z \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2255 | shows "\<forall>x\<in>affine hull S. \<exists>e. e > 1 \<and> (1 - e)*\<^sub>R x + e *\<^sub>R z \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2256 | using convex_rel_interior_if[of S z] assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2257 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2258 | lemma convex_rel_interior_only_if: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2259 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2260 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2261 |     and "S \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2262 | assumes "\<forall>x\<in>S. \<exists>e. e > 1 \<and> (1 - e) *\<^sub>R x + e *\<^sub>R z \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2263 | shows "z \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2264 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2265 | obtain x where x: "x \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2266 | using rel_interior_eq_empty assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2267 | then have "x \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2268 | using rel_interior_subset by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2269 | then obtain e where e: "e > 1 \<and> (1 - e) *\<^sub>R x + e *\<^sub>R z \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2270 | using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2271 | define y where [abs_def]: "y = (1 - e) *\<^sub>R x + e *\<^sub>R z" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2272 | then have "y \<in> S" using e by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2273 | define e1 where "e1 = 1/e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2274 | then have "0 < e1 \<and> e1 < 1" using e by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2275 | then have "z =y - (1 - e1) *\<^sub>R (y - x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2276 | using e1_def y_def by (auto simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2277 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2278 | using rel_interior_convex_shrink[of S x y "1-e1"] \<open>0 < e1 \<and> e1 < 1\<close> \<open>y \<in> S\<close> x assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2279 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2280 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2281 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2282 | lemma convex_rel_interior_iff: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2283 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2284 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2285 |     and "S \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2286 | shows "z \<in> rel_interior S \<longleftrightarrow> (\<forall>x\<in>S. \<exists>e. e > 1 \<and> (1 - e) *\<^sub>R x + e *\<^sub>R z \<in> S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2287 | using assms hull_subset[of S "affine"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2288 | convex_rel_interior_if[of S z] convex_rel_interior_only_if[of S z] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2289 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2290 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2291 | lemma convex_rel_interior_iff2: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2292 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2293 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2294 |     and "S \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2295 | shows "z \<in> rel_interior S \<longleftrightarrow> (\<forall>x\<in>affine hull S. \<exists>e. e > 1 \<and> (1 - e) *\<^sub>R x + e *\<^sub>R z \<in> S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2296 | using assms hull_subset[of S] convex_rel_interior_if2[of S z] convex_rel_interior_only_if[of S z] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2297 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2298 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2299 | lemma convex_interior_iff: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2300 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2301 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2302 | shows "z \<in> interior S \<longleftrightarrow> (\<forall>x. \<exists>e. e > 0 \<and> z + e *\<^sub>R x \<in> S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2303 | proof (cases "aff_dim S = int DIM('n)")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2304 | case False | 
| 68056 | 2305 |   { assume "z \<in> interior S"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2306 | then have False | 
| 68056 | 2307 | using False interior_rel_interior_gen[of S] by auto } | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2308 | moreover | 
| 68056 | 2309 |   { assume r: "\<forall>x. \<exists>e. e > 0 \<and> z + e *\<^sub>R x \<in> S"
 | 
| 2310 |     { fix x
 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2311 | obtain e1 where e1: "e1 > 0 \<and> z + e1 *\<^sub>R (x - z) \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2312 | using r by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2313 | obtain e2 where e2: "e2 > 0 \<and> z + e2 *\<^sub>R (z - x) \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2314 | using r by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2315 | define x1 where [abs_def]: "x1 = z + e1 *\<^sub>R (x - z)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2316 | then have x1: "x1 \<in> affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2317 | using e1 hull_subset[of S] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2318 | define x2 where [abs_def]: "x2 = z + e2 *\<^sub>R (z - x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2319 | then have x2: "x2 \<in> affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2320 | using e2 hull_subset[of S] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2321 | have *: "e1/(e1+e2) + e2/(e1+e2) = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2322 | using add_divide_distrib[of e1 e2 "e1+e2"] e1 e2 by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2323 | then have "z = (e2/(e1+e2)) *\<^sub>R x1 + (e1/(e1+e2)) *\<^sub>R x2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2324 | using x1_def x2_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2325 | apply (auto simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2326 | using scaleR_left_distrib[of "e1/(e1+e2)" "e2/(e1+e2)" z] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2327 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2328 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2329 | then have z: "z \<in> affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2330 | using mem_affine[of "affine hull S" x1 x2 "e2/(e1+e2)" "e1/(e1+e2)"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2331 | x1 x2 affine_affine_hull[of S] * | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2332 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2333 | have "x1 - x2 = (e1 + e2) *\<^sub>R (x - z)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2334 | using x1_def x2_def by (auto simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2335 | then have "x = z+(1/(e1+e2)) *\<^sub>R (x1-x2)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2336 | using e1 e2 by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2337 | then have "x \<in> affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2338 | using mem_affine_3_minus[of "affine hull S" z x1 x2 "1/(e1+e2)"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2339 | x1 x2 z affine_affine_hull[of S] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2340 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2341 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2342 | then have "affine hull S = UNIV" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2343 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2344 |     then have "aff_dim S = int DIM('n)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2345 | using aff_dim_affine_hull[of S] by (simp add: aff_dim_UNIV) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2346 | then have False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2347 | using False by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2348 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2349 | ultimately show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2350 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2351 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2352 |   then have "S \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2353 | using aff_dim_empty[of S] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2354 | have *: "affine hull S = UNIV" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2355 | using True affine_hull_UNIV by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2356 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2357 | assume "z \<in> interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2358 | then have "z \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2359 | using True interior_rel_interior_gen[of S] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2360 | then have **: "\<forall>x. \<exists>e. e > 1 \<and> (1 - e) *\<^sub>R x + e *\<^sub>R z \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2361 |       using convex_rel_interior_iff2[of S z] assms \<open>S \<noteq> {}\<close> * by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2362 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2363 | obtain e1 where e1: "e1 > 1" "(1 - e1) *\<^sub>R (z - x) + e1 *\<^sub>R z \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2364 | using **[rule_format, of "z-x"] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2365 | define e where [abs_def]: "e = e1 - 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2366 | then have "(1 - e1) *\<^sub>R (z - x) + e1 *\<^sub>R z = z + e *\<^sub>R x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2367 | by (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2368 | then have "e > 0" "z + e *\<^sub>R x \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2369 | using e1 e_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2370 | then have "\<exists>e. e > 0 \<and> z + e *\<^sub>R x \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2371 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2372 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2373 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2374 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2375 | assume r: "\<forall>x. \<exists>e. e > 0 \<and> z + e *\<^sub>R x \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2376 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2377 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2378 | obtain e1 where e1: "e1 > 0" "z + e1 *\<^sub>R (z - x) \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2379 | using r[rule_format, of "z-x"] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2380 | define e where "e = e1 + 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2381 | then have "z + e1 *\<^sub>R (z - x) = (1 - e) *\<^sub>R x + e *\<^sub>R z" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2382 | by (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2383 | then have "e > 1" "(1 - e)*\<^sub>R x + e *\<^sub>R z \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2384 | using e1 e_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2385 | then have "\<exists>e. e > 1 \<and> (1 - e) *\<^sub>R x + e *\<^sub>R z \<in> S" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2386 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2387 | then have "z \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2388 |       using convex_rel_interior_iff2[of S z] assms \<open>S \<noteq> {}\<close> by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2389 | then have "z \<in> interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2390 | using True interior_rel_interior_gen[of S] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2391 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2392 | ultimately show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2393 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2394 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2395 | |
| 70136 | 2396 | subsubsection\<^marker>\<open>tag unimportant\<close> \<open>Relative interior and closure under common operations\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2397 | |
| 67613 | 2398 | lemma rel_interior_inter_aux: "\<Inter>{rel_interior S |S. S \<in> I} \<subseteq> \<Inter>I"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2399 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2400 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2401 | fix y | 
| 67613 | 2402 |     assume "y \<in> \<Inter>{rel_interior S |S. S \<in> I}"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2403 | then have y: "\<forall>S \<in> I. y \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2404 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2405 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2406 | fix S | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2407 | assume "S \<in> I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2408 | then have "y \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2409 | using rel_interior_subset y by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2410 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2411 | then have "y \<in> \<Inter>I" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2412 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2413 | then show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2414 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2415 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2416 | lemma closure_Int: "closure (\<Inter>I) \<le> \<Inter>{closure S |S. S \<in> I}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2417 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2418 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2419 | fix y | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2420 | assume "y \<in> \<Inter>I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2421 | then have y: "\<forall>S \<in> I. y \<in> S" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2422 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2423 | fix S | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2424 | assume "S \<in> I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2425 | then have "y \<in> closure S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2426 | using closure_subset y by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2427 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2428 |     then have "y \<in> \<Inter>{closure S |S. S \<in> I}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2429 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2430 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2431 |   then have "\<Inter>I \<subseteq> \<Inter>{closure S |S. S \<in> I}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2432 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2433 |   moreover have "closed (\<Inter>{closure S |S. S \<in> I})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2434 | unfolding closed_Inter closed_closure by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2435 | ultimately show ?thesis using closure_hull[of "\<Inter>I"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2436 |     hull_minimal[of "\<Inter>I" "\<Inter>{closure S |S. S \<in> I}" "closed"] by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2437 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2438 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2439 | lemma convex_closure_rel_interior_inter: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2440 | assumes "\<forall>S\<in>I. convex (S :: 'n::euclidean_space set)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2441 |     and "\<Inter>{rel_interior S |S. S \<in> I} \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2442 |   shows "\<Inter>{closure S |S. S \<in> I} \<le> closure (\<Inter>{rel_interior S |S. S \<in> I})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2443 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2444 | obtain x where x: "\<forall>S\<in>I. x \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2445 | using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2446 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2447 | fix y | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2448 |     assume "y \<in> \<Inter>{closure S |S. S \<in> I}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2449 | then have y: "\<forall>S \<in> I. y \<in> closure S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2450 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2451 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2452 | assume "y = x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2453 |       then have "y \<in> closure (\<Inter>{rel_interior S |S. S \<in> I})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2454 |         using x closure_subset[of "\<Inter>{rel_interior S |S. S \<in> I}"] by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2455 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2456 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2457 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2458 | assume "y \<noteq> x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2459 |       { fix e :: real
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2460 | assume e: "e > 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2461 | define e1 where "e1 = min 1 (e/norm (y - x))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2462 | then have e1: "e1 > 0" "e1 \<le> 1" "e1 * norm (y - x) \<le> e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2463 | using \<open>y \<noteq> x\<close> \<open>e > 0\<close> le_divide_eq[of e1 e "norm (y - x)"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2464 | by simp_all | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2465 | define z where "z = y - e1 *\<^sub>R (y - x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2466 |         {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2467 | fix S | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2468 | assume "S \<in> I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2469 | then have "z \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2470 | using rel_interior_closure_convex_shrink[of S x y e1] assms x y e1 z_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2471 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2472 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2473 |         then have *: "z \<in> \<Inter>{rel_interior S |S. S \<in> I}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2474 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2475 |         have "\<exists>z. z \<in> \<Inter>{rel_interior S |S. S \<in> I} \<and> z \<noteq> y \<and> dist z y \<le> e"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2476 | apply (rule_tac x="z" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2477 | using \<open>y \<noteq> x\<close> z_def * e1 e dist_norm[of z y] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2478 | apply simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2479 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2480 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2481 |       then have "y islimpt \<Inter>{rel_interior S |S. S \<in> I}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2482 | unfolding islimpt_approachable_le by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2483 |       then have "y \<in> closure (\<Inter>{rel_interior S |S. S \<in> I})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2484 | unfolding closure_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2485 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2486 |     ultimately have "y \<in> closure (\<Inter>{rel_interior S |S. S \<in> I})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2487 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2488 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2489 | then show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2490 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2491 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2492 | lemma convex_closure_inter: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2493 | assumes "\<forall>S\<in>I. convex (S :: 'n::euclidean_space set)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2494 |     and "\<Inter>{rel_interior S |S. S \<in> I} \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2495 |   shows "closure (\<Inter>I) = \<Inter>{closure S |S. S \<in> I}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2496 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2497 |   have "\<Inter>{closure S |S. S \<in> I} \<le> closure (\<Inter>{rel_interior S |S. S \<in> I})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2498 | using convex_closure_rel_interior_inter assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2499 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2500 |   have "closure (\<Inter>{rel_interior S |S. S \<in> I}) \<le> closure (\<Inter>I)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2501 |     using rel_interior_inter_aux closure_mono[of "\<Inter>{rel_interior S |S. S \<in> I}" "\<Inter>I"]
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2502 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2503 | ultimately show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2504 | using closure_Int[of I] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2505 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2506 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2507 | lemma convex_inter_rel_interior_same_closure: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2508 | assumes "\<forall>S\<in>I. convex (S :: 'n::euclidean_space set)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2509 |     and "\<Inter>{rel_interior S |S. S \<in> I} \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2510 |   shows "closure (\<Inter>{rel_interior S |S. S \<in> I}) = closure (\<Inter>I)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2511 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2512 |   have "\<Inter>{closure S |S. S \<in> I} \<le> closure (\<Inter>{rel_interior S |S. S \<in> I})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2513 | using convex_closure_rel_interior_inter assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2514 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2515 |   have "closure (\<Inter>{rel_interior S |S. S \<in> I}) \<le> closure (\<Inter>I)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2516 |     using rel_interior_inter_aux closure_mono[of "\<Inter>{rel_interior S |S. S \<in> I}" "\<Inter>I"]
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2517 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2518 | ultimately show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2519 | using closure_Int[of I] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2520 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2521 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2522 | lemma convex_rel_interior_inter: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2523 | assumes "\<forall>S\<in>I. convex (S :: 'n::euclidean_space set)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2524 |     and "\<Inter>{rel_interior S |S. S \<in> I} \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2525 |   shows "rel_interior (\<Inter>I) \<subseteq> \<Inter>{rel_interior S |S. S \<in> I}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2526 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2527 | have "convex (\<Inter>I)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2528 | using assms convex_Inter by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2529 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2530 |   have "convex (\<Inter>{rel_interior S |S. S \<in> I})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2531 | apply (rule convex_Inter) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2532 | using assms convex_rel_interior | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2533 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2534 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2535 | ultimately | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2536 |   have "rel_interior (\<Inter>{rel_interior S |S. S \<in> I}) = rel_interior (\<Inter>I)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2537 | using convex_inter_rel_interior_same_closure assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2538 |       closure_eq_rel_interior_eq[of "\<Inter>{rel_interior S |S. S \<in> I}" "\<Inter>I"]
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2539 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2540 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2541 |     using rel_interior_subset[of "\<Inter>{rel_interior S |S. S \<in> I}"] by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2542 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2543 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2544 | lemma convex_rel_interior_finite_inter: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2545 | assumes "\<forall>S\<in>I. convex (S :: 'n::euclidean_space set)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2546 |     and "\<Inter>{rel_interior S |S. S \<in> I} \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2547 | and "finite I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2548 |   shows "rel_interior (\<Inter>I) = \<Inter>{rel_interior S |S. S \<in> I}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2549 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2550 |   have "\<Inter>I \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2551 | using assms rel_interior_inter_aux[of I] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2552 | have "convex (\<Inter>I)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2553 | using convex_Inter assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2554 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2555 |   proof (cases "I = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2556 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2557 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2558 | using Inter_empty rel_interior_UNIV by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2559 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2560 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2561 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2562 | fix z | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2563 |       assume z: "z \<in> \<Inter>{rel_interior S |S. S \<in> I}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2564 |       {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2565 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2566 | assume x: "x \<in> \<Inter>I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2567 |         {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2568 | fix S | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2569 | assume S: "S \<in> I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2570 | then have "z \<in> rel_interior S" "x \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2571 | using z x by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2572 | then have "\<exists>m. m > 1 \<and> (\<forall>e. e > 1 \<and> e \<le> m \<longrightarrow> (1 - e)*\<^sub>R x + e *\<^sub>R z \<in> S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2573 | using convex_rel_interior_if[of S z] S assms hull_subset[of S] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2574 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2575 | then obtain mS where | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2576 | mS: "\<forall>S\<in>I. mS S > 1 \<and> (\<forall>e. e > 1 \<and> e \<le> mS S \<longrightarrow> (1 - e) *\<^sub>R x + e *\<^sub>R z \<in> S)" by metis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2577 | define e where "e = Min (mS ` I)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2578 |         then have "e \<in> mS ` I" using assms \<open>I \<noteq> {}\<close> by simp
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2579 | then have "e > 1" using mS by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2580 | moreover have "\<forall>S\<in>I. e \<le> mS S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2581 | using e_def assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2582 | ultimately have "\<exists>e > 1. (1 - e) *\<^sub>R x + e *\<^sub>R z \<in> \<Inter>I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2583 | using mS by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2584 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2585 | then have "z \<in> rel_interior (\<Inter>I)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2586 |         using convex_rel_interior_iff[of "\<Inter>I" z] \<open>\<Inter>I \<noteq> {}\<close> \<open>convex (\<Inter>I)\<close> by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2587 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2588 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2589 | using convex_rel_interior_inter[of I] assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2590 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2591 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2592 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2593 | lemma convex_closure_inter_two: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2594 | fixes S T :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2595 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2596 | and "convex T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2597 |   assumes "rel_interior S \<inter> rel_interior T \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2598 | shows "closure (S \<inter> T) = closure S \<inter> closure T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2599 |   using convex_closure_inter[of "{S,T}"] assms by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2600 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2601 | lemma convex_rel_interior_inter_two: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2602 | fixes S T :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2603 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2604 | and "convex T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2605 |     and "rel_interior S \<inter> rel_interior T \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2606 | shows "rel_interior (S \<inter> T) = rel_interior S \<inter> rel_interior T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2607 |   using convex_rel_interior_finite_inter[of "{S,T}"] assms by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2608 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2609 | lemma convex_affine_closure_Int: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2610 | fixes S T :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2611 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2612 | and "affine T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2613 |     and "rel_interior S \<inter> T \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2614 | shows "closure (S \<inter> T) = closure S \<inter> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2615 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2616 | have "affine hull T = T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2617 | using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2618 | then have "rel_interior T = T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2619 | using rel_interior_affine_hull[of T] by metis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2620 | moreover have "closure T = T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2621 | using assms affine_closed[of T] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2622 | ultimately show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2623 | using convex_closure_inter_two[of S T] assms affine_imp_convex by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2624 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2625 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2626 | lemma connected_component_1_gen: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2627 | fixes S :: "'a :: euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2628 |   assumes "DIM('a) = 1"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2629 | shows "connected_component S a b \<longleftrightarrow> closed_segment a b \<subseteq> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2630 | unfolding connected_component_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2631 | by (metis (no_types, lifting) assms subsetD subsetI convex_contains_segment convex_segment(1) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2632 | ends_in_segment connected_convex_1_gen) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2633 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2634 | lemma connected_component_1: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2635 | fixes S :: "real set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2636 | shows "connected_component S a b \<longleftrightarrow> closed_segment a b \<subseteq> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2637 | by (simp add: connected_component_1_gen) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2638 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2639 | lemma convex_affine_rel_interior_Int: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2640 | fixes S T :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2641 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2642 | and "affine T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2643 |     and "rel_interior S \<inter> T \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2644 | shows "rel_interior (S \<inter> T) = rel_interior S \<inter> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2645 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2646 | have "affine hull T = T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2647 | using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2648 | then have "rel_interior T = T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2649 | using rel_interior_affine_hull[of T] by metis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2650 | moreover have "closure T = T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2651 | using assms affine_closed[of T] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2652 | ultimately show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2653 | using convex_rel_interior_inter_two[of S T] assms affine_imp_convex by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2654 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2655 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2656 | lemma convex_affine_rel_frontier_Int: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2657 | fixes S T :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2658 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2659 | and "affine T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2660 |     and "interior S \<inter> T \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2661 | shows "rel_frontier(S \<inter> T) = frontier S \<inter> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2662 | using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2663 | apply (simp add: rel_frontier_def convex_affine_closure_Int frontier_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2664 | by (metis Diff_Int_distrib2 Int_emptyI convex_affine_closure_Int convex_affine_rel_interior_Int empty_iff interior_rel_interior_gen) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2665 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2666 | lemma rel_interior_convex_Int_affine: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2667 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2668 |   assumes "convex S" "affine T" "interior S \<inter> T \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2669 | shows "rel_interior(S \<inter> T) = interior S \<inter> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2670 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2671 | obtain a where aS: "a \<in> interior S" and aT:"a \<in> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2672 | using assms by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2673 | have "rel_interior S = interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2674 | by (metis (no_types) aS affine_hull_nonempty_interior equals0D rel_interior_interior) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2675 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2676 | by (metis (no_types) affine_imp_convex assms convex_rel_interior_inter_two hull_same rel_interior_affine_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2677 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2678 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2679 | lemma closure_convex_Int_affine: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2680 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2681 |   assumes "convex S" "affine T" "rel_interior S \<inter> T \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2682 | shows "closure(S \<inter> T) = closure S \<inter> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2683 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2684 | have "closure (S \<inter> T) \<subseteq> closure T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2685 | by (simp add: closure_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2686 | also have "... \<subseteq> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2687 | by (simp add: affine_closed assms) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2688 | finally show "closure(S \<inter> T) \<subseteq> closure S \<inter> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2689 | by (simp add: closure_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2690 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2691 | obtain a where "a \<in> rel_interior S" "a \<in> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2692 | using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2693 | then have ssT: "subspace ((\<lambda>x. (-a)+x) ` T)" and "a \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2694 | using affine_diffs_subspace rel_interior_subset assms by blast+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2695 | show "closure S \<inter> T \<subseteq> closure (S \<inter> T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2696 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2697 | fix x assume "x \<in> closure S \<inter> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2698 | show "x \<in> closure (S \<inter> T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2699 | proof (cases "x = a") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2700 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2701 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2702 | using \<open>a \<in> S\<close> \<open>a \<in> T\<close> closure_subset by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2703 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2704 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2705 | then have "x \<in> closure(open_segment a x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2706 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2707 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2708 | using \<open>x \<in> closure S \<inter> T\<close> assms convex_affine_closure_Int by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2709 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2710 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2711 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2712 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2713 | lemma subset_rel_interior_convex: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2714 | fixes S T :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2715 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2716 | and "convex T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2717 | and "S \<le> closure T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2718 | and "\<not> S \<subseteq> rel_frontier T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2719 | shows "rel_interior S \<subseteq> rel_interior T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2720 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2721 | have *: "S \<inter> closure T = S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2722 | using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2723 | have "\<not> rel_interior S \<subseteq> rel_frontier T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2724 | using closure_mono[of "rel_interior S" "rel_frontier T"] closed_rel_frontier[of T] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2725 | closure_closed[of S] convex_closure_rel_interior[of S] closure_subset[of S] assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2726 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2727 |   then have "rel_interior S \<inter> rel_interior (closure T) \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2728 | using assms rel_frontier_def[of T] rel_interior_subset convex_rel_interior_closure[of T] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2729 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2730 | then have "rel_interior S \<inter> rel_interior T = rel_interior (S \<inter> closure T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2731 | using assms convex_closure convex_rel_interior_inter_two[of S "closure T"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2732 | convex_rel_interior_closure[of T] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2733 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2734 | also have "\<dots> = rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2735 | using * by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2736 | finally show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2737 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2738 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2739 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2740 | lemma rel_interior_convex_linear_image: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2741 | fixes f :: "'m::euclidean_space \<Rightarrow> 'n::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2742 | assumes "linear f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2743 | and "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2744 | shows "f ` (rel_interior S) = rel_interior (f ` S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2745 | proof (cases "S = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2746 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2747 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2748 | using assms rel_interior_empty rel_interior_eq_empty by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2749 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2750 | case False | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 2751 | interpret linear f by fact | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2752 | have *: "f ` (rel_interior S) \<subseteq> f ` S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2753 | unfolding image_mono using rel_interior_subset by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2754 | have "f ` S \<subseteq> f ` (closure S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2755 | unfolding image_mono using closure_subset by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2756 | also have "\<dots> = f ` (closure (rel_interior S))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2757 | using convex_closure_rel_interior assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2758 | also have "\<dots> \<subseteq> closure (f ` (rel_interior S))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2759 | using closure_linear_image_subset assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2760 | finally have "closure (f ` S) = closure (f ` rel_interior S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2761 | using closure_mono[of "f ` S" "closure (f ` rel_interior S)"] closure_closure | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2762 | closure_mono[of "f ` rel_interior S" "f ` S"] * | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2763 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2764 | then have "rel_interior (f ` S) = rel_interior (f ` rel_interior S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2765 | using assms convex_rel_interior | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2766 | linear_conv_bounded_linear[of f] convex_linear_image[of _ S] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2767 | convex_linear_image[of _ "rel_interior S"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2768 | closure_eq_rel_interior_eq[of "f ` S" "f ` rel_interior S"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2769 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2770 | then have "rel_interior (f ` S) \<subseteq> f ` rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2771 | using rel_interior_subset by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2772 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2773 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2774 | fix z | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2775 | assume "z \<in> f ` rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2776 | then obtain z1 where z1: "z1 \<in> rel_interior S" "f z1 = z" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2777 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2778 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2779 | assume "x \<in> f ` S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2780 | then obtain x1 where x1: "x1 \<in> S" "f x1 = x" by auto | 
| 67613 | 2781 | then obtain e where e: "e > 1" "(1 - e) *\<^sub>R x1 + e *\<^sub>R z1 \<in> S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2782 | using convex_rel_interior_iff[of S z1] \<open>convex S\<close> x1 z1 by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2783 | moreover have "f ((1 - e) *\<^sub>R x1 + e *\<^sub>R z1) = (1 - e) *\<^sub>R x + e *\<^sub>R z" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 2784 | using x1 z1 by (simp add: linear_add linear_scale \<open>linear f\<close>) | 
| 67613 | 2785 | ultimately have "(1 - e) *\<^sub>R x + e *\<^sub>R z \<in> f ` S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2786 | using imageI[of "(1 - e) *\<^sub>R x1 + e *\<^sub>R z1" S f] by auto | 
| 67613 | 2787 | then have "\<exists>e. e > 1 \<and> (1 - e) *\<^sub>R x + e *\<^sub>R z \<in> f ` S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2788 | using e by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2789 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2790 | then have "z \<in> rel_interior (f ` S)" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 2791 | using convex_rel_interior_iff[of "f ` S" z] \<open>convex S\<close> \<open>linear f\<close> | 
| 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 2792 |         \<open>S \<noteq> {}\<close> convex_linear_image[of f S]  linear_conv_bounded_linear[of f]
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2793 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2794 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2795 | ultimately show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2796 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2797 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2798 | lemma rel_interior_convex_linear_preimage: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2799 | fixes f :: "'m::euclidean_space \<Rightarrow> 'n::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2800 | assumes "linear f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2801 | and "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2802 |     and "f -` (rel_interior S) \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2803 | shows "rel_interior (f -` S) = f -` (rel_interior S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2804 | proof - | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 2805 | interpret linear f by fact | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2806 |   have "S \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2807 | using assms rel_interior_empty by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2808 |   have nonemp: "f -` S \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2809 | by (metis assms(3) rel_interior_subset subset_empty vimage_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2810 |   then have "S \<inter> (range f) \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2811 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2812 | have conv: "convex (f -` S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2813 | using convex_linear_vimage assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2814 | then have "convex (S \<inter> range f)" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 2815 | by (simp add: assms(2) convex_Int convex_linear_image linear_axioms) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2816 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2817 | fix z | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2818 | assume "z \<in> f -` (rel_interior S)" | 
| 67613 | 2819 | then have z: "f z \<in> rel_interior S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2820 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2821 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2822 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2823 | assume "x \<in> f -` S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2824 | then have "f x \<in> S" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2825 | then obtain e where e: "e > 1" "(1 - e) *\<^sub>R f x + e *\<^sub>R f z \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2826 |         using convex_rel_interior_iff[of S "f z"] z assms \<open>S \<noteq> {}\<close> by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2827 | moreover have "(1 - e) *\<^sub>R f x + e *\<^sub>R f z = f ((1 - e) *\<^sub>R x + e *\<^sub>R z)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2828 | using \<open>linear f\<close> by (simp add: linear_iff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2829 | ultimately have "\<exists>e. e > 1 \<and> (1 - e) *\<^sub>R x + e *\<^sub>R z \<in> f -` S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2830 | using e by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2831 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2832 | then have "z \<in> rel_interior (f -` S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2833 | using convex_rel_interior_iff[of "f -` S" z] conv nonemp by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2834 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2835 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2836 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2837 | fix z | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2838 | assume z: "z \<in> rel_interior (f -` S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2839 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2840 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2841 | assume "x \<in> S \<inter> range f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2842 | then obtain y where y: "f y = x" "y \<in> f -` S" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2843 | then obtain e where e: "e > 1" "(1 - e) *\<^sub>R y + e *\<^sub>R z \<in> f -` S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2844 | using convex_rel_interior_iff[of "f -` S" z] z conv by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2845 | moreover have "(1 - e) *\<^sub>R x + e *\<^sub>R f z = f ((1 - e) *\<^sub>R y + e *\<^sub>R z)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2846 | using \<open>linear f\<close> y by (simp add: linear_iff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2847 | ultimately have "\<exists>e. e > 1 \<and> (1 - e) *\<^sub>R x + e *\<^sub>R f z \<in> S \<inter> range f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2848 | using e by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2849 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2850 | then have "f z \<in> rel_interior (S \<inter> range f)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2851 |       using \<open>convex (S \<inter> (range f))\<close> \<open>S \<inter> range f \<noteq> {}\<close>
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2852 | convex_rel_interior_iff[of "S \<inter> (range f)" "f z"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2853 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2854 | moreover have "affine (range f)" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 2855 | by (simp add: linear_axioms linear_subspace_image subspace_imp_affine) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2856 | ultimately have "f z \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2857 | using convex_affine_rel_interior_Int[of S "range f"] assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2858 | then have "z \<in> f -` (rel_interior S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2859 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2860 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2861 | ultimately show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2862 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2863 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2864 | lemma rel_interior_Times: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2865 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2866 | and T :: "'m::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2867 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2868 | and "convex T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2869 | shows "rel_interior (S \<times> T) = rel_interior S \<times> rel_interior T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2870 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2871 |   { assume "S = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2872 | then have ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2873 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2874 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2875 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2876 |   { assume "T = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2877 | then have ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2878 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2879 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2880 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2881 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2882 |     assume "S \<noteq> {}" "T \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2883 |     then have ri: "rel_interior S \<noteq> {}" "rel_interior T \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2884 | using rel_interior_eq_empty assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2885 |     then have "fst -` rel_interior S \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2886 | using fst_vimage_eq_Times[of "rel_interior S"] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2887 | then have "rel_interior ((fst :: 'n * 'm \<Rightarrow> 'n) -` S) = fst -` rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2888 | using fst_linear \<open>convex S\<close> rel_interior_convex_linear_preimage[of fst S] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2889 | then have s: "rel_interior (S \<times> (UNIV :: 'm set)) = rel_interior S \<times> UNIV" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2890 | by (simp add: fst_vimage_eq_Times) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2891 |     from ri have "snd -` rel_interior T \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2892 | using snd_vimage_eq_Times[of "rel_interior T"] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2893 | then have "rel_interior ((snd :: 'n * 'm \<Rightarrow> 'm) -` T) = snd -` rel_interior T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2894 | using snd_linear \<open>convex T\<close> rel_interior_convex_linear_preimage[of snd T] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2895 | then have t: "rel_interior ((UNIV :: 'n set) \<times> T) = UNIV \<times> rel_interior T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2896 | by (simp add: snd_vimage_eq_Times) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2897 | from s t have *: "rel_interior (S \<times> (UNIV :: 'm set)) \<inter> rel_interior ((UNIV :: 'n set) \<times> T) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2898 | rel_interior S \<times> rel_interior T" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2899 | have "S \<times> T = S \<times> (UNIV :: 'm set) \<inter> (UNIV :: 'n set) \<times> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2900 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2901 | then have "rel_interior (S \<times> T) = rel_interior ((S \<times> (UNIV :: 'm set)) \<inter> ((UNIV :: 'n set) \<times> T))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2902 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2903 | also have "\<dots> = rel_interior (S \<times> (UNIV :: 'm set)) \<inter> rel_interior ((UNIV :: 'n set) \<times> T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2904 | apply (subst convex_rel_interior_inter_two[of "S \<times> (UNIV :: 'm set)" "(UNIV :: 'n set) \<times> T"]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2905 | using * ri assms convex_Times | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2906 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2907 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2908 | finally have ?thesis using * by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2909 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2910 | ultimately show ?thesis by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2911 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2912 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2913 | lemma rel_interior_scaleR: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2914 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2915 | assumes "c \<noteq> 0" | 
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
68796diff
changeset | 2916 | shows "((*\<^sub>R) c) ` (rel_interior S) = rel_interior (((*\<^sub>R) c) ` S)" | 
| 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
68796diff
changeset | 2917 | using rel_interior_injective_linear_image[of "((*\<^sub>R) c)" S] | 
| 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
68796diff
changeset | 2918 | linear_conv_bounded_linear[of "(*\<^sub>R) c"] linear_scaleR injective_scaleR[of c] assms | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2919 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2920 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2921 | lemma rel_interior_convex_scaleR: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2922 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2923 | assumes "convex S" | 
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
68796diff
changeset | 2924 | shows "((*\<^sub>R) c) ` (rel_interior S) = rel_interior (((*\<^sub>R) c) ` S)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2925 | by (metis assms linear_scaleR rel_interior_convex_linear_image) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2926 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2927 | lemma convex_rel_open_scaleR: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2928 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2929 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2930 | and "rel_open S" | 
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
68796diff
changeset | 2931 | shows "convex (((*\<^sub>R) c) ` S) \<and> rel_open (((*\<^sub>R) c) ` S)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2932 | by (metis assms convex_scaling rel_interior_convex_scaleR rel_open_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2933 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2934 | lemma convex_rel_open_finite_inter: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2935 | assumes "\<forall>S\<in>I. convex (S :: 'n::euclidean_space set) \<and> rel_open S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2936 | and "finite I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2937 | shows "convex (\<Inter>I) \<and> rel_open (\<Inter>I)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2938 | proof (cases "\<Inter>{rel_interior S |S. S \<in> I} = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2939 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2940 |   then have "\<Inter>I = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2941 | using assms unfolding rel_open_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2942 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2943 | unfolding rel_open_def using rel_interior_empty by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2944 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2945 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2946 | then have "rel_open (\<Inter>I)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2947 | using assms unfolding rel_open_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2948 | using convex_rel_interior_finite_inter[of I] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2949 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2950 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2951 | using convex_Inter assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2952 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2953 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2954 | lemma convex_rel_open_linear_image: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2955 | fixes f :: "'m::euclidean_space \<Rightarrow> 'n::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2956 | assumes "linear f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2957 | and "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2958 | and "rel_open S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2959 | shows "convex (f ` S) \<and> rel_open (f ` S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2960 | by (metis assms convex_linear_image rel_interior_convex_linear_image rel_open_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2961 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2962 | lemma convex_rel_open_linear_preimage: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2963 | fixes f :: "'m::euclidean_space \<Rightarrow> 'n::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2964 | assumes "linear f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2965 | and "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2966 | and "rel_open S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2967 | shows "convex (f -` S) \<and> rel_open (f -` S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2968 | proof (cases "f -` (rel_interior S) = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2969 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2970 |   then have "f -` S = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2971 | using assms unfolding rel_open_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2972 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2973 | unfolding rel_open_def using rel_interior_empty by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2974 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2975 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2976 | then have "rel_open (f -` S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2977 | using assms unfolding rel_open_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2978 | using rel_interior_convex_linear_preimage[of f S] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2979 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2980 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2981 | using convex_linear_vimage assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2982 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2983 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2984 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2985 | lemma rel_interior_projection: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2986 |   fixes S :: "('m::euclidean_space \<times> 'n::euclidean_space) set"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2987 | and f :: "'m::euclidean_space \<Rightarrow> 'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2988 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2989 |     and "f = (\<lambda>y. {z. (y, z) \<in> S})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2990 |   shows "(y, z) \<in> rel_interior S \<longleftrightarrow> (y \<in> rel_interior {y. (f y \<noteq> {})} \<and> z \<in> rel_interior (f y))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2991 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2992 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2993 | fix y | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2994 |     assume "y \<in> {y. f y \<noteq> {}}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2995 | then obtain z where "(y, z) \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2996 | using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2997 | then have "\<exists>x. x \<in> S \<and> y = fst x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2998 | apply (rule_tac x="(y, z)" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2999 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3000 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3001 | then obtain x where "x \<in> S" "y = fst x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3002 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3003 | then have "y \<in> fst ` S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3004 | unfolding image_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3005 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3006 |   then have "fst ` S = {y. f y \<noteq> {}}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3007 | unfolding fst_def using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3008 |   then have h1: "fst ` rel_interior S = rel_interior {y. f y \<noteq> {}}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3009 | using rel_interior_convex_linear_image[of fst S] assms fst_linear by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3010 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3011 | fix y | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3012 |     assume "y \<in> rel_interior {y. f y \<noteq> {}}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3013 | then have "y \<in> fst ` rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3014 | using h1 by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3015 |     then have *: "rel_interior S \<inter> fst -` {y} \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3016 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3017 |     moreover have aff: "affine (fst -` {y})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3018 | unfolding affine_alt by (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3019 |     ultimately have **: "rel_interior (S \<inter> fst -` {y}) = rel_interior S \<inter> fst -` {y}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3020 |       using convex_affine_rel_interior_Int[of S "fst -` {y}"] assms by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3021 |     have conv: "convex (S \<inter> fst -` {y})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3022 | using convex_Int assms aff affine_imp_convex by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3023 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3024 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3025 | assume "x \<in> f y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3026 |       then have "(y, x) \<in> S \<inter> (fst -` {y})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3027 | using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3028 | moreover have "x = snd (y, x)" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3029 |       ultimately have "x \<in> snd ` (S \<inter> fst -` {y})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3030 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3031 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3032 |     then have "snd ` (S \<inter> fst -` {y}) = f y"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3033 | using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3034 |     then have ***: "rel_interior (f y) = snd ` rel_interior (S \<inter> fst -` {y})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3035 |       using rel_interior_convex_linear_image[of snd "S \<inter> fst -` {y}"] snd_linear conv
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3036 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3037 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3038 | fix z | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3039 | assume "z \<in> rel_interior (f y)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3040 |       then have "z \<in> snd ` rel_interior (S \<inter> fst -` {y})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3041 | using *** by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3042 |       moreover have "{y} = fst ` rel_interior (S \<inter> fst -` {y})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3043 | using * ** rel_interior_subset by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3044 |       ultimately have "(y, z) \<in> rel_interior (S \<inter> fst -` {y})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3045 | by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3046 | then have "(y,z) \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3047 | using ** by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3048 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3049 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3050 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3051 | fix z | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3052 | assume "(y, z) \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3053 |       then have "(y, z) \<in> rel_interior (S \<inter> fst -` {y})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3054 | using ** by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3055 |       then have "z \<in> snd ` rel_interior (S \<inter> fst -` {y})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3056 | by (metis Range_iff snd_eq_Range) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3057 | then have "z \<in> rel_interior (f y)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3058 | using *** by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3059 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3060 | ultimately have "\<And>z. (y, z) \<in> rel_interior S \<longleftrightarrow> z \<in> rel_interior (f y)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3061 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3062 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3063 |   then have h2: "\<And>y z. y \<in> rel_interior {t. f t \<noteq> {}} \<Longrightarrow>
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3064 | (y, z) \<in> rel_interior S \<longleftrightarrow> z \<in> rel_interior (f y)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3065 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3066 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3067 | fix y z | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3068 | assume asm: "(y, z) \<in> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3069 | then have "y \<in> fst ` rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3070 | by (metis Domain_iff fst_eq_Domain) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3071 |     then have "y \<in> rel_interior {t. f t \<noteq> {}}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3072 | using h1 by auto | 
| 67613 | 3073 |     then have "y \<in> rel_interior {t. f t \<noteq> {}}" and "(z \<in> rel_interior (f y))"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3074 | using h2 asm by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3075 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3076 | then show ?thesis using h2 by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3077 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3078 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3079 | lemma rel_frontier_Times: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3080 | fixes S :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3081 | and T :: "'m::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3082 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3083 | and "convex T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3084 | shows "rel_frontier S \<times> rel_frontier T \<subseteq> rel_frontier (S \<times> T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3085 | by (force simp: rel_frontier_def rel_interior_Times assms closure_Times) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3086 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3087 | |
| 70136 | 3088 | subsubsection\<^marker>\<open>tag unimportant\<close> \<open>Relative interior of convex cone\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3089 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3090 | lemma cone_rel_interior: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3091 | fixes S :: "'m::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3092 | assumes "cone S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3093 |   shows "cone ({0} \<union> rel_interior S)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3094 | proof (cases "S = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3095 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3096 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3097 | by (simp add: rel_interior_empty cone_0) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3098 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3099 | case False | 
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
68796diff
changeset | 3100 | then have *: "0 \<in> S \<and> (\<forall>c. c > 0 \<longrightarrow> (*\<^sub>R) c ` S = S)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3101 | using cone_iff[of S] assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3102 |   then have *: "0 \<in> ({0} \<union> rel_interior S)"
 | 
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
68796diff
changeset | 3103 |     and "\<forall>c. c > 0 \<longrightarrow> (*\<^sub>R) c ` ({0} \<union> rel_interior S) = ({0} \<union> rel_interior S)"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3104 | by (auto simp add: rel_interior_scaleR) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3105 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3106 |     using cone_iff[of "{0} \<union> rel_interior S"] by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3107 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3108 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3109 | lemma rel_interior_convex_cone_aux: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3110 | fixes S :: "'m::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3111 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3112 |   shows "(c, x) \<in> rel_interior (cone hull ({(1 :: real)} \<times> S)) \<longleftrightarrow>
 | 
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
68796diff
changeset | 3113 | c > 0 \<and> x \<in> (((*\<^sub>R) c) ` (rel_interior S))" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3114 | proof (cases "S = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3115 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3116 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3117 | by (simp add: rel_interior_empty cone_hull_empty) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3118 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3119 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3120 | then obtain s where "s \<in> S" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3121 |   have conv: "convex ({(1 :: real)} \<times> S)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3122 |     using convex_Times[of "{(1 :: real)}" S] assms convex_singleton[of "1 :: real"]
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3123 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3124 |   define f where "f y = {z. (y, z) \<in> cone hull ({1 :: real} \<times> S)}" for y
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3125 |   then have *: "(c, x) \<in> rel_interior (cone hull ({(1 :: real)} \<times> S)) =
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3126 |     (c \<in> rel_interior {y. f y \<noteq> {}} \<and> x \<in> rel_interior (f c))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3127 |     apply (subst rel_interior_projection[of "cone hull ({(1 :: real)} \<times> S)" f c x])
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3128 |     using convex_cone_hull[of "{(1 :: real)} \<times> S"] conv
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3129 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3130 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3131 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3132 | fix y :: real | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3133 | assume "y \<ge> 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3134 |     then have "y *\<^sub>R (1,s) \<in> cone hull ({1 :: real} \<times> S)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3135 |       using cone_hull_expl[of "{(1 :: real)} \<times> S"] \<open>s \<in> S\<close> by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3136 |     then have "f y \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3137 | using f_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3138 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3139 |   then have "{y. f y \<noteq> {}} = {0..}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3140 |     using f_def cone_hull_expl[of "{1 :: real} \<times> S"] by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3141 |   then have **: "rel_interior {y. f y \<noteq> {}} = {0<..}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3142 | using rel_interior_real_semiline by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3143 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3144 | fix c :: real | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3145 | assume "c > 0" | 
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
68796diff
changeset | 3146 | then have "f c = ((*\<^sub>R) c ` S)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3147 |       using f_def cone_hull_expl[of "{1 :: real} \<times> S"] by auto
 | 
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
68796diff
changeset | 3148 | then have "rel_interior (f c) = (*\<^sub>R) c ` rel_interior S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3149 | using rel_interior_convex_scaleR[of S c] assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3150 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3151 | then show ?thesis using * ** by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3152 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3153 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3154 | lemma rel_interior_convex_cone: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3155 | fixes S :: "'m::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3156 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3157 |   shows "rel_interior (cone hull ({1 :: real} \<times> S)) =
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3158 |     {(c, c *\<^sub>R x) | c x. c > 0 \<and> x \<in> rel_interior S}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3159 | (is "?lhs = ?rhs") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3160 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3161 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3162 | fix z | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3163 | assume "z \<in> ?lhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3164 | have *: "z = (fst z, snd z)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3165 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3166 | have "z \<in> ?rhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3167 | using rel_interior_convex_cone_aux[of S "fst z" "snd z"] assms \<open>z \<in> ?lhs\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3168 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3169 | apply (rule_tac x = "fst z" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3170 | apply (rule_tac x = x in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3171 | using * | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3172 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3173 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3174 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3175 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3176 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3177 | fix z | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3178 | assume "z \<in> ?rhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3179 | then have "z \<in> ?lhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3180 | using rel_interior_convex_cone_aux[of S "fst z" "snd z"] assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3181 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3182 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3183 | ultimately show ?thesis by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3184 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3185 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3186 | lemma convex_hull_finite_union: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3187 | assumes "finite I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3188 |   assumes "\<forall>i\<in>I. convex (S i) \<and> (S i) \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3189 | shows "convex hull (\<Union>(S ` I)) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3190 |     {sum (\<lambda>i. c i *\<^sub>R s i) I | c s. (\<forall>i\<in>I. c i \<ge> 0) \<and> sum c I = 1 \<and> (\<forall>i\<in>I. s i \<in> S i)}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3191 | (is "?lhs = ?rhs") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3192 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3193 | have "?lhs \<supseteq> ?rhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3194 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3195 | fix x | 
| 67613 | 3196 | assume "x \<in> ?rhs" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3197 | then obtain c s where *: "sum (\<lambda>i. c i *\<^sub>R s i) I = x" "sum c I = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3198 | "(\<forall>i\<in>I. c i \<ge> 0) \<and> (\<forall>i\<in>I. s i \<in> S i)" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3199 | then have "\<forall>i\<in>I. s i \<in> convex hull (\<Union>(S ` I))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3200 | using hull_subset[of "\<Union>(S ` I)" convex] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3201 | then show "x \<in> ?lhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3202 | unfolding *(1)[symmetric] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3203 | apply (subst convex_sum[of I "convex hull \<Union>(S ` I)" c s]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3204 | using * assms convex_convex_hull | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3205 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3206 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3207 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3208 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3209 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3210 | fix i | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3211 | assume "i \<in> I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3212 | with assms have "\<exists>p. p \<in> S i" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3213 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3214 | then obtain p where p: "\<forall>i\<in>I. p i \<in> S i" by metis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3215 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3216 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3217 | fix i | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3218 | assume "i \<in> I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3219 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3220 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3221 | assume "x \<in> S i" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3222 | define c where "c j = (if j = i then 1::real else 0)" for j | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3223 | then have *: "sum c I = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3224 | using \<open>finite I\<close> \<open>i \<in> I\<close> sum.delta[of I i "\<lambda>j::'a. 1::real"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3225 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3226 | define s where "s j = (if j = i then x else p j)" for j | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3227 | then have "\<forall>j. c j *\<^sub>R s j = (if j = i then x else 0)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3228 | using c_def by (auto simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3229 | then have "x = sum (\<lambda>i. c i *\<^sub>R s i) I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3230 | using s_def c_def \<open>finite I\<close> \<open>i \<in> I\<close> sum.delta[of I i "\<lambda>j::'a. x"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3231 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3232 | then have "x \<in> ?rhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3233 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3234 | apply (rule_tac x = c in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3235 | apply (rule_tac x = s in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3236 | using * c_def s_def p \<open>x \<in> S i\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3237 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3238 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3239 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3240 | then have "?rhs \<supseteq> S i" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3241 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3242 | then have *: "?rhs \<supseteq> \<Union>(S ` I)" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3243 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3244 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3245 | fix u v :: real | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3246 | assume uv: "u \<ge> 0 \<and> v \<ge> 0 \<and> u + v = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3247 | fix x y | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3248 | assume xy: "x \<in> ?rhs \<and> y \<in> ?rhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3249 | from xy obtain c s where | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3250 | xc: "x = sum (\<lambda>i. c i *\<^sub>R s i) I \<and> (\<forall>i\<in>I. c i \<ge> 0) \<and> sum c I = 1 \<and> (\<forall>i\<in>I. s i \<in> S i)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3251 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3252 | from xy obtain d t where | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3253 | yc: "y = sum (\<lambda>i. d i *\<^sub>R t i) I \<and> (\<forall>i\<in>I. d i \<ge> 0) \<and> sum d I = 1 \<and> (\<forall>i\<in>I. t i \<in> S i)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3254 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3255 | define e where "e i = u * c i + v * d i" for i | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3256 | have ge0: "\<forall>i\<in>I. e i \<ge> 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3257 | using e_def xc yc uv by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3258 | have "sum (\<lambda>i. u * c i) I = u * sum c I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3259 | by (simp add: sum_distrib_left) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3260 | moreover have "sum (\<lambda>i. v * d i) I = v * sum d I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3261 | by (simp add: sum_distrib_left) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3262 | ultimately have sum1: "sum e I = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3263 | using e_def xc yc uv by (simp add: sum.distrib) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3264 | define q where "q i = (if e i = 0 then p i else (u * c i / e i) *\<^sub>R s i + (v * d i / e i) *\<^sub>R t i)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3265 | for i | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3266 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3267 | fix i | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3268 | assume i: "i \<in> I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3269 | have "q i \<in> S i" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3270 | proof (cases "e i = 0") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3271 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3272 | then show ?thesis using i p q_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3273 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3274 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3275 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3276 | using mem_convex_alt[of "S i" "s i" "t i" "u * (c i)" "v * (d i)"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3277 | mult_nonneg_nonneg[of u "c i"] mult_nonneg_nonneg[of v "d i"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3278 | assms q_def e_def i False xc yc uv | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3279 | by (auto simp del: mult_nonneg_nonneg) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3280 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3281 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3282 | then have qs: "\<forall>i\<in>I. q i \<in> S i" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3283 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3284 | fix i | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3285 | assume i: "i \<in> I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3286 | have "(u * c i) *\<^sub>R s i + (v * d i) *\<^sub>R t i = e i *\<^sub>R q i" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3287 | proof (cases "e i = 0") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3288 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3289 | have ge: "u * (c i) \<ge> 0 \<and> v * d i \<ge> 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3290 | using xc yc uv i by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3291 | moreover from ge have "u * c i \<le> 0 \<and> v * d i \<le> 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3292 | using True e_def i by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3293 | ultimately have "u * c i = 0 \<and> v * d i = 0" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3294 | with True show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3295 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3296 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3297 | then have "(u * (c i)/(e i))*\<^sub>R (s i)+(v * (d i)/(e i))*\<^sub>R (t i) = q i" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3298 | using q_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3299 | then have "e i *\<^sub>R ((u * (c i)/(e i))*\<^sub>R (s i)+(v * (d i)/(e i))*\<^sub>R (t i)) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3300 | = (e i) *\<^sub>R (q i)" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3301 | with False show ?thesis by (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3302 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3303 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3304 | then have *: "\<forall>i\<in>I. (u * c i) *\<^sub>R s i + (v * d i) *\<^sub>R t i = e i *\<^sub>R q i" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3305 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3306 | have "u *\<^sub>R x + v *\<^sub>R y = sum (\<lambda>i. (u * c i) *\<^sub>R s i + (v * d i) *\<^sub>R t i) I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3307 | using xc yc by (simp add: algebra_simps scaleR_right.sum sum.distrib) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3308 | also have "\<dots> = sum (\<lambda>i. e i *\<^sub>R q i) I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3309 | using * by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3310 | finally have "u *\<^sub>R x + v *\<^sub>R y = sum (\<lambda>i. (e i) *\<^sub>R (q i)) I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3311 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3312 | then have "u *\<^sub>R x + v *\<^sub>R y \<in> ?rhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3313 | using ge0 sum1 qs by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3314 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3315 | then have "convex ?rhs" unfolding convex_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3316 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3317 | using \<open>?lhs \<supseteq> ?rhs\<close> * hull_minimal[of "\<Union>(S ` I)" ?rhs convex] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3318 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3319 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3320 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3321 | lemma convex_hull_union_two: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3322 | fixes S T :: "'m::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3323 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3324 |     and "S \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3325 | and "convex T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3326 |     and "T \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3327 | shows "convex hull (S \<union> T) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3328 |     {u *\<^sub>R s + v *\<^sub>R t | u v s t. u \<ge> 0 \<and> v \<ge> 0 \<and> u + v = 1 \<and> s \<in> S \<and> t \<in> T}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3329 | (is "?lhs = ?rhs") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3330 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3331 |   define I :: "nat set" where "I = {1, 2}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3332 | define s where "s i = (if i = (1::nat) then S else T)" for i | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3333 | have "\<Union>(s ` I) = S \<union> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3334 | using s_def I_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3335 | then have "convex hull (\<Union>(s ` I)) = convex hull (S \<union> T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3336 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3337 | moreover have "convex hull \<Union>(s ` I) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3338 |     {\<Sum> i\<in>I. c i *\<^sub>R sa i | c sa. (\<forall>i\<in>I. 0 \<le> c i) \<and> sum c I = 1 \<and> (\<forall>i\<in>I. sa i \<in> s i)}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3339 | apply (subst convex_hull_finite_union[of I s]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3340 | using assms s_def I_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3341 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3342 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3343 | moreover have | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3344 |     "{\<Sum>i\<in>I. c i *\<^sub>R sa i | c sa. (\<forall>i\<in>I. 0 \<le> c i) \<and> sum c I = 1 \<and> (\<forall>i\<in>I. sa i \<in> s i)} \<le> ?rhs"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3345 | using s_def I_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3346 | ultimately show "?lhs \<subseteq> ?rhs" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3347 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3348 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3349 | assume "x \<in> ?rhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3350 | then obtain u v s t where *: "x = u *\<^sub>R s + v *\<^sub>R t \<and> u \<ge> 0 \<and> v \<ge> 0 \<and> u + v = 1 \<and> s \<in> S \<and> t \<in> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3351 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3352 |     then have "x \<in> convex hull {s, t}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3353 | using convex_hull_2[of s t] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3354 | then have "x \<in> convex hull (S \<union> T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3355 |       using * hull_mono[of "{s, t}" "S \<union> T"] by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3356 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3357 | then show "?lhs \<supseteq> ?rhs" by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3358 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3359 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3360 | |
| 70136 | 3361 | subsection\<^marker>\<open>tag unimportant\<close> \<open>Convexity on direct sums\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3362 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3363 | lemma closure_sum: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3364 | fixes S T :: "'a::real_normed_vector set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3365 | shows "closure S + closure T \<subseteq> closure (S + T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3366 | unfolding set_plus_image closure_Times [symmetric] split_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3367 | by (intro closure_bounded_linear_image_subset bounded_linear_add | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3368 | bounded_linear_fst bounded_linear_snd) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3369 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3370 | lemma rel_interior_sum: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3371 | fixes S T :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3372 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3373 | and "convex T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3374 | shows "rel_interior (S + T) = rel_interior S + rel_interior T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3375 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3376 | have "rel_interior S + rel_interior T = (\<lambda>(x,y). x + y) ` (rel_interior S \<times> rel_interior T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3377 | by (simp add: set_plus_image) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3378 | also have "\<dots> = (\<lambda>(x,y). x + y) ` rel_interior (S \<times> T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3379 | using rel_interior_Times assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3380 | also have "\<dots> = rel_interior (S + T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3381 | using fst_snd_linear convex_Times assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3382 | rel_interior_convex_linear_image[of "(\<lambda>(x,y). x + y)" "S \<times> T"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3383 | by (auto simp add: set_plus_image) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3384 | finally show ?thesis .. | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3385 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3386 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3387 | lemma rel_interior_sum_gen: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3388 | fixes S :: "'a \<Rightarrow> 'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3389 | assumes "\<forall>i\<in>I. convex (S i)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3390 | shows "rel_interior (sum S I) = sum (\<lambda>i. rel_interior (S i)) I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3391 | apply (subst sum_set_cond_linear[of convex]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3392 | using rel_interior_sum rel_interior_sing[of "0"] assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3393 | apply (auto simp add: convex_set_plus) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3394 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3395 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3396 | lemma convex_rel_open_direct_sum: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3397 | fixes S T :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3398 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3399 | and "rel_open S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3400 | and "convex T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3401 | and "rel_open T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3402 | shows "convex (S \<times> T) \<and> rel_open (S \<times> T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3403 | by (metis assms convex_Times rel_interior_Times rel_open_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3404 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3405 | lemma convex_rel_open_sum: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3406 | fixes S T :: "'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3407 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3408 | and "rel_open S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3409 | and "convex T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3410 | and "rel_open T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3411 | shows "convex (S + T) \<and> rel_open (S + T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3412 | by (metis assms convex_set_plus rel_interior_sum rel_open_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3413 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3414 | lemma convex_hull_finite_union_cones: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3415 | assumes "finite I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3416 |     and "I \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3417 |   assumes "\<forall>i\<in>I. convex (S i) \<and> cone (S i) \<and> S i \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3418 | shows "convex hull (\<Union>(S ` I)) = sum S I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3419 | (is "?lhs = ?rhs") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3420 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3421 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3422 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3423 | assume "x \<in> ?lhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3424 | then obtain c xs where | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3425 | x: "x = sum (\<lambda>i. c i *\<^sub>R xs i) I \<and> (\<forall>i\<in>I. c i \<ge> 0) \<and> sum c I = 1 \<and> (\<forall>i\<in>I. xs i \<in> S i)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3426 | using convex_hull_finite_union[of I S] assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3427 | define s where "s i = c i *\<^sub>R xs i" for i | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3428 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3429 | fix i | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3430 | assume "i \<in> I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3431 | then have "s i \<in> S i" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3432 | using s_def x assms mem_cone[of "S i" "xs i" "c i"] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3433 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3434 | then have "\<forall>i\<in>I. s i \<in> S i" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3435 | moreover have "x = sum s I" using x s_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3436 | ultimately have "x \<in> ?rhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3437 | using set_sum_alt[of I S] assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3438 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3439 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3440 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3441 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3442 | assume "x \<in> ?rhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3443 | then obtain s where x: "x = sum s I \<and> (\<forall>i\<in>I. s i \<in> S i)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3444 | using set_sum_alt[of I S] assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3445 | define xs where "xs i = of_nat(card I) *\<^sub>R s i" for i | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3446 | then have "x = sum (\<lambda>i. ((1 :: real) / of_nat(card I)) *\<^sub>R xs i) I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3447 | using x assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3448 | moreover have "\<forall>i\<in>I. xs i \<in> S i" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3449 | using x xs_def assms by (simp add: cone_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3450 | moreover have "\<forall>i\<in>I. (1 :: real) / of_nat (card I) \<ge> 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3451 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3452 | moreover have "sum (\<lambda>i. (1 :: real) / of_nat (card I)) I = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3453 | using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3454 | ultimately have "x \<in> ?lhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3455 | apply (subst convex_hull_finite_union[of I S]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3456 | using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3457 | apply blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3458 | using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3459 | apply blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3460 | apply rule | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3461 | apply (rule_tac x = "(\<lambda>i. (1 :: real) / of_nat (card I))" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3462 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3463 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3464 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3465 | ultimately show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3466 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3467 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3468 | lemma convex_hull_union_cones_two: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3469 | fixes S T :: "'m::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3470 | assumes "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3471 | and "cone S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3472 |     and "S \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3473 | assumes "convex T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3474 | and "cone T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3475 |     and "T \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3476 | shows "convex hull (S \<union> T) = S + T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3477 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3478 |   define I :: "nat set" where "I = {1, 2}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3479 | define A where "A i = (if i = (1::nat) then S else T)" for i | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3480 | have "\<Union>(A ` I) = S \<union> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3481 | using A_def I_def by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3482 | then have "convex hull (\<Union>(A ` I)) = convex hull (S \<union> T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3483 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3484 | moreover have "convex hull \<Union>(A ` I) = sum A I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3485 | apply (subst convex_hull_finite_union_cones[of I A]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3486 | using assms A_def I_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3487 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3488 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3489 | moreover have "sum A I = S + T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3490 | using A_def I_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3491 | unfolding set_plus_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3492 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3493 | unfolding set_plus_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3494 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3495 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3496 | ultimately show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3497 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3498 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3499 | lemma rel_interior_convex_hull_union: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3500 | fixes S :: "'a \<Rightarrow> 'n::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3501 | assumes "finite I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3502 |     and "\<forall>i\<in>I. convex (S i) \<and> S i \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3503 | shows "rel_interior (convex hull (\<Union>(S ` I))) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3504 |     {sum (\<lambda>i. c i *\<^sub>R s i) I | c s. (\<forall>i\<in>I. c i > 0) \<and> sum c I = 1 \<and>
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3505 | (\<forall>i\<in>I. s i \<in> rel_interior(S i))}" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3506 | (is "?lhs = ?rhs") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3507 | proof (cases "I = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3508 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3509 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3510 | using convex_hull_empty rel_interior_empty by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3511 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3512 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3513 | define C0 where "C0 = convex hull (\<Union>(S ` I))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3514 | have "\<forall>i\<in>I. C0 \<ge> S i" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3515 | unfolding C0_def using hull_subset[of "\<Union>(S ` I)"] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3516 |   define K0 where "K0 = cone hull ({1 :: real} \<times> C0)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3517 |   define K where "K i = cone hull ({1 :: real} \<times> S i)" for i
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3518 |   have "\<forall>i\<in>I. K i \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3519 | unfolding K_def using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3520 | by (simp add: cone_hull_empty_iff[symmetric]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3521 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3522 | fix i | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3523 | assume "i \<in> I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3524 | then have "convex (K i)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3525 | unfolding K_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3526 | apply (subst convex_cone_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3527 | apply (subst convex_Times) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3528 | using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3529 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3530 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3531 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3532 | then have convK: "\<forall>i\<in>I. convex (K i)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3533 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3534 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3535 | fix i | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3536 | assume "i \<in> I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3537 | then have "K0 \<supseteq> K i" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3538 | unfolding K0_def K_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3539 | apply (subst hull_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3540 | using \<open>\<forall>i\<in>I. C0 \<ge> S i\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3541 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3542 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3543 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3544 | then have "K0 \<supseteq> \<Union>(K ` I)" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3545 | moreover have "convex K0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3546 | unfolding K0_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3547 | apply (subst convex_cone_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3548 | apply (subst convex_Times) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3549 | unfolding C0_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3550 | using convex_convex_hull | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3551 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3552 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3553 | ultimately have geq: "K0 \<supseteq> convex hull (\<Union>(K ` I))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3554 | using hull_minimal[of _ "K0" "convex"] by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3555 |   have "\<forall>i\<in>I. K i \<supseteq> {1 :: real} \<times> S i"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3556 | using K_def by (simp add: hull_subset) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3557 |   then have "\<Union>(K ` I) \<supseteq> {1 :: real} \<times> \<Union>(S ` I)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3558 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3559 |   then have "convex hull \<Union>(K ` I) \<supseteq> convex hull ({1 :: real} \<times> \<Union>(S ` I))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3560 | by (simp add: hull_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3561 |   then have "convex hull \<Union>(K ` I) \<supseteq> {1 :: real} \<times> C0"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3562 | unfolding C0_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3563 |     using convex_hull_Times[of "{(1 :: real)}" "\<Union>(S ` I)"] convex_hull_singleton
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3564 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3565 | moreover have "cone (convex hull (\<Union>(K ` I)))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3566 | apply (subst cone_convex_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3567 | using cone_Union[of "K ` I"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3568 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3569 | unfolding K_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3570 | using cone_cone_hull | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3571 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3572 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3573 | ultimately have "convex hull (\<Union>(K ` I)) \<supseteq> K0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3574 | unfolding K0_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3575 | using hull_minimal[of _ "convex hull (\<Union>(K ` I))" "cone"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3576 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3577 | then have "K0 = convex hull (\<Union>(K ` I))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3578 | using geq by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3579 | also have "\<dots> = sum K I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3580 | apply (subst convex_hull_finite_union_cones[of I K]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3581 | using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3582 | apply blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3583 | using False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3584 | apply blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3585 | unfolding K_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3586 | apply rule | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3587 | apply (subst convex_cone_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3588 | apply (subst convex_Times) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3589 |     using assms cone_cone_hull \<open>\<forall>i\<in>I. K i \<noteq> {}\<close> K_def
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3590 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3591 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3592 | finally have "K0 = sum K I" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3593 | then have *: "rel_interior K0 = sum (\<lambda>i. (rel_interior (K i))) I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3594 | using rel_interior_sum_gen[of I K] convK by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3595 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3596 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3597 | assume "x \<in> ?lhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3598 | then have "(1::real, x) \<in> rel_interior K0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3599 | using K0_def C0_def rel_interior_convex_cone_aux[of C0 "1::real" x] convex_convex_hull | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3600 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3601 | then obtain k where k: "(1::real, x) = sum k I \<and> (\<forall>i\<in>I. k i \<in> rel_interior (K i))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3602 | using \<open>finite I\<close> * set_sum_alt[of I "\<lambda>i. rel_interior (K i)"] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3603 |     {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3604 | fix i | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3605 | assume "i \<in> I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3606 |       then have "convex (S i) \<and> k i \<in> rel_interior (cone hull {1} \<times> S i)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3607 | using k K_def assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3608 | then have "\<exists>ci si. k i = (ci, ci *\<^sub>R si) \<and> 0 < ci \<and> si \<in> rel_interior (S i)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3609 | using rel_interior_convex_cone[of "S i"] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3610 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3611 | then obtain c s where | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3612 | cs: "\<forall>i\<in>I. k i = (c i, c i *\<^sub>R s i) \<and> 0 < c i \<and> s i \<in> rel_interior (S i)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3613 | by metis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3614 | then have "x = (\<Sum>i\<in>I. c i *\<^sub>R s i) \<and> sum c I = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3615 | using k by (simp add: sum_prod) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3616 | then have "x \<in> ?rhs" | 
| 68056 | 3617 | using k cs by auto | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3618 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3619 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3620 |   {
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3621 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3622 | assume "x \<in> ?rhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3623 | then obtain c s where cs: "x = sum (\<lambda>i. c i *\<^sub>R s i) I \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3624 | (\<forall>i\<in>I. c i > 0) \<and> sum c I = 1 \<and> (\<forall>i\<in>I. s i \<in> rel_interior (S i))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3625 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3626 | define k where "k i = (c i, c i *\<^sub>R s i)" for i | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3627 |     {
 | 
| 67613 | 3628 | fix i assume "i \<in> I" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3629 | then have "k i \<in> rel_interior (K i)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3630 | using k_def K_def assms cs rel_interior_convex_cone[of "S i"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3631 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3632 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3633 | then have "(1::real, x) \<in> rel_interior K0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3634 | using K0_def * set_sum_alt[of I "(\<lambda>i. rel_interior (K i))"] assms k_def cs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3635 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3636 | apply (rule_tac x = k in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3637 | apply (simp add: sum_prod) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3638 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3639 | then have "x \<in> ?lhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3640 | using K0_def C0_def rel_interior_convex_cone_aux[of C0 1 x] | 
| 68056 | 3641 | by auto | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3642 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3643 | ultimately show ?thesis by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3644 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3645 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3646 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3647 | lemma convex_le_Inf_differential: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3648 | fixes f :: "real \<Rightarrow> real" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3649 | assumes "convex_on I f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3650 | and "x \<in> interior I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3651 | and "y \<in> I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3652 |   shows "f y \<ge> f x + Inf ((\<lambda>t. (f x - f t) / (x - t)) ` ({x<..} \<inter> I)) * (y - x)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3653 | (is "_ \<ge> _ + Inf (?F x) * (y - x)") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3654 | proof (cases rule: linorder_cases) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3655 | assume "x < y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3656 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3657 | have "open (interior I)" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3658 | from openE[OF this \<open>x \<in> interior I\<close>] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3659 | obtain e where e: "0 < e" "ball x e \<subseteq> interior I" . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3660 | moreover define t where "t = min (x + e / 2) ((x + y) / 2)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3661 | ultimately have "x < t" "t < y" "t \<in> ball x e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3662 | by (auto simp: dist_real_def field_simps split: split_min) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3663 | with \<open>x \<in> interior I\<close> e interior_subset[of I] have "t \<in> I" "x \<in> I" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3664 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3665 | have "open (interior I)" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3666 | from openE[OF this \<open>x \<in> interior I\<close>] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3667 | obtain e where "0 < e" "ball x e \<subseteq> interior I" . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3668 | moreover define K where "K = x - e / 2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3669 | with \<open>0 < e\<close> have "K \<in> ball x e" "K < x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3670 | by (auto simp: dist_real_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3671 | ultimately have "K \<in> I" "K < x" "x \<in> I" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3672 | using interior_subset[of I] \<open>x \<in> interior I\<close> by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3673 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3674 | have "Inf (?F x) \<le> (f x - f y) / (x - y)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3675 | proof (intro bdd_belowI cInf_lower2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3676 | show "(f x - f t) / (x - t) \<in> ?F x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3677 | using \<open>t \<in> I\<close> \<open>x < t\<close> by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3678 | show "(f x - f t) / (x - t) \<le> (f x - f y) / (x - y)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3679 | using \<open>convex_on I f\<close> \<open>x \<in> I\<close> \<open>y \<in> I\<close> \<open>x < t\<close> \<open>t < y\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3680 | by (rule convex_on_diff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3681 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3682 | fix y | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3683 | assume "y \<in> ?F x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3684 | with order_trans[OF convex_on_diff[OF \<open>convex_on I f\<close> \<open>K \<in> I\<close> _ \<open>K < x\<close> _]] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3685 | show "(f K - f x) / (K - x) \<le> y" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3686 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3687 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3688 | using \<open>x < y\<close> by (simp add: field_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3689 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3690 | assume "y < x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3691 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3692 | have "open (interior I)" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3693 | from openE[OF this \<open>x \<in> interior I\<close>] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3694 | obtain e where e: "0 < e" "ball x e \<subseteq> interior I" . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3695 | moreover define t where "t = x + e / 2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3696 | ultimately have "x < t" "t \<in> ball x e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3697 | by (auto simp: dist_real_def field_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3698 | with \<open>x \<in> interior I\<close> e interior_subset[of I] have "t \<in> I" "x \<in> I" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3699 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3700 | have "(f x - f y) / (x - y) \<le> Inf (?F x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3701 | proof (rule cInf_greatest) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3702 | have "(f x - f y) / (x - y) = (f y - f x) / (y - x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3703 | using \<open>y < x\<close> by (auto simp: field_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3704 | also | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3705 | fix z | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3706 | assume "z \<in> ?F x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3707 | with order_trans[OF convex_on_diff[OF \<open>convex_on I f\<close> \<open>y \<in> I\<close> _ \<open>y < x\<close>]] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3708 | have "(f y - f x) / (y - x) \<le> z" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3709 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3710 | finally show "(f x - f y) / (x - y) \<le> z" . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3711 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3712 | have "open (interior I)" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3713 | from openE[OF this \<open>x \<in> interior I\<close>] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3714 | obtain e where e: "0 < e" "ball x e \<subseteq> interior I" . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3715 | then have "x + e / 2 \<in> ball x e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3716 | by (auto simp: dist_real_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3717 |     with e interior_subset[of I] have "x + e / 2 \<in> {x<..} \<inter> I"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3718 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3719 |     then show "?F x \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3720 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3721 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3722 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3723 | using \<open>y < x\<close> by (simp add: field_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3724 | qed simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3725 | |
| 70136 | 3726 | subsection\<^marker>\<open>tag unimportant\<close>\<open>Explicit formulas for interior and relative interior of convex hull\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3727 | |
| 66765 
c1dfa973b269
new theorem at_within_cbox_finite
 paulson <lp15@cam.ac.uk> parents: 
66641diff
changeset | 3728 | lemma at_within_cbox_finite: | 
| 
c1dfa973b269
new theorem at_within_cbox_finite
 paulson <lp15@cam.ac.uk> parents: 
66641diff
changeset | 3729 | assumes "x \<in> box a b" "x \<notin> S" "finite S" | 
| 
c1dfa973b269
new theorem at_within_cbox_finite
 paulson <lp15@cam.ac.uk> parents: 
66641diff
changeset | 3730 | shows "(at x within cbox a b - S) = at x" | 
| 
c1dfa973b269
new theorem at_within_cbox_finite
 paulson <lp15@cam.ac.uk> parents: 
66641diff
changeset | 3731 | proof - | 
| 
c1dfa973b269
new theorem at_within_cbox_finite
 paulson <lp15@cam.ac.uk> parents: 
66641diff
changeset | 3732 | have "interior (cbox a b - S) = box a b - S" | 
| 
c1dfa973b269
new theorem at_within_cbox_finite
 paulson <lp15@cam.ac.uk> parents: 
66641diff
changeset | 3733 | using \<open>finite S\<close> by (simp add: interior_diff finite_imp_closed) | 
| 
c1dfa973b269
new theorem at_within_cbox_finite
 paulson <lp15@cam.ac.uk> parents: 
66641diff
changeset | 3734 | then show ?thesis | 
| 
c1dfa973b269
new theorem at_within_cbox_finite
 paulson <lp15@cam.ac.uk> parents: 
66641diff
changeset | 3735 | using at_within_interior assms by fastforce | 
| 
c1dfa973b269
new theorem at_within_cbox_finite
 paulson <lp15@cam.ac.uk> parents: 
66641diff
changeset | 3736 | qed | 
| 
c1dfa973b269
new theorem at_within_cbox_finite
 paulson <lp15@cam.ac.uk> parents: 
66641diff
changeset | 3737 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3738 | lemma affine_independent_convex_affine_hull: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3739 | fixes s :: "'a::euclidean_space set" | 
| 69508 | 3740 | assumes "\<not> affine_dependent s" "t \<subseteq> s" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3741 | shows "convex hull t = affine hull t \<inter> convex hull s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3742 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3743 | have fin: "finite s" "finite t" using assms aff_independent_finite finite_subset by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3744 |     { fix u v x
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3745 | assume uv: "sum u t = 1" "\<forall>x\<in>s. 0 \<le> v x" "sum v s = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3746 | "(\<Sum>x\<in>s. v x *\<^sub>R x) = (\<Sum>v\<in>t. u v *\<^sub>R v)" "x \<in> t" | 
| 67443 
3abf6a722518
standardized towards new-style formal comments: isabelle update_comments;
 wenzelm parents: 
67399diff
changeset | 3747 | then have s: "s = (s - t) \<union> t" \<comment> \<open>split into separate cases\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3748 | using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3749 | have [simp]: "(\<Sum>x\<in>t. v x *\<^sub>R x) + (\<Sum>x\<in>s - t. v x *\<^sub>R x) = (\<Sum>x\<in>t. u x *\<^sub>R x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3750 | "sum v t + sum v (s - t) = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3751 | using uv fin s | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3752 | by (auto simp: sum.union_disjoint [symmetric] Un_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3753 | have "(\<Sum>x\<in>s. if x \<in> t then v x - u x else v x) = 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3754 | "(\<Sum>x\<in>s. (if x \<in> t then v x - u x else v x) *\<^sub>R x) = 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3755 | using uv fin | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3756 | by (subst s, subst sum.union_disjoint, auto simp: algebra_simps sum_subtractf)+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3757 | } note [simp] = this | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3758 | have "convex hull t \<subseteq> affine hull t" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3759 | using convex_hull_subset_affine_hull by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3760 | moreover have "convex hull t \<subseteq> convex hull s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3761 | using assms hull_mono by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3762 | moreover have "affine hull t \<inter> convex hull s \<subseteq> convex hull t" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3763 | using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3764 | apply (simp add: convex_hull_finite affine_hull_finite fin affine_dependent_explicit) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3765 | apply (drule_tac x=s in spec) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3766 | apply (auto simp: fin) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3767 | apply (rule_tac x=u in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3768 | apply (rename_tac v) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3769 | apply (drule_tac x="\<lambda>x. if x \<in> t then v x - u x else v x" in spec) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3770 | apply (force)+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3771 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3772 | ultimately show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3773 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3774 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3775 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3776 | lemma affine_independent_span_eq: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3777 | fixes s :: "'a::euclidean_space set" | 
| 69508 | 3778 |   assumes "\<not> affine_dependent s" "card s = Suc (DIM ('a))"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3779 | shows "affine hull s = UNIV" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3780 | proof (cases "s = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3781 | case True then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3782 | using assms by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3783 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3784 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3785 | then obtain a t where t: "a \<notin> t" "s = insert a t" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3786 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3787 | then have fin: "finite t" using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3788 | by (metis finite_insert aff_independent_finite) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3789 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3790 | using assms t fin | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3791 | apply (simp add: affine_dependent_iff_dependent affine_hull_insert_span_gen) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3792 | apply (rule subset_antisym) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3793 | apply force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3794 | apply (rule Fun.vimage_subsetD) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3795 | apply (metis add.commute diff_add_cancel surj_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3796 | apply (rule card_ge_dim_independent) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3797 | apply (auto simp: card_image inj_on_def dim_subset_UNIV) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3798 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3799 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3800 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3801 | lemma affine_independent_span_gt: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3802 | fixes s :: "'a::euclidean_space set" | 
| 69508 | 3803 |   assumes ind: "\<not> affine_dependent s" and dim: "DIM ('a) < card s"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3804 | shows "affine hull s = UNIV" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3805 | apply (rule affine_independent_span_eq [OF ind]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3806 | apply (rule antisym) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3807 | using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3808 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3809 | apply (metis add_2_eq_Suc' not_less_eq_eq affine_dependent_biggerset aff_independent_finite) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3810 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3811 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3812 | lemma empty_interior_affine_hull: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3813 | fixes s :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3814 |   assumes "finite s" and dim: "card s \<le> DIM ('a)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3815 |     shows "interior(affine hull s) = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3816 | using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3817 | apply (induct s rule: finite_induct) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3818 | apply (simp_all add: affine_dependent_iff_dependent affine_hull_insert_span_gen interior_translation) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3819 | apply (rule empty_interior_lowdim) | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 3820 | by (auto simp: Suc_le_lessD card_image_le dual_order.trans intro!: dim_le_card'[THEN le_less_trans]) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3821 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3822 | lemma empty_interior_convex_hull: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3823 | fixes s :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3824 |   assumes "finite s" and dim: "card s \<le> DIM ('a)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3825 |     shows "interior(convex hull s) = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3826 | by (metis Diff_empty Diff_eq_empty_iff convex_hull_subset_affine_hull | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3827 | interior_mono empty_interior_affine_hull [OF assms]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3828 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3829 | lemma explicit_subset_rel_interior_convex_hull: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3830 | fixes s :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3831 | shows "finite s | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3832 |          \<Longrightarrow> {y. \<exists>u. (\<forall>x \<in> s. 0 < u x \<and> u x < 1) \<and> sum u s = 1 \<and> sum (\<lambda>x. u x *\<^sub>R x) s = y}
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3833 | \<subseteq> rel_interior (convex hull s)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3834 |   by (force simp add:  rel_interior_convex_hull_union [where S="\<lambda>x. {x}" and I=s, simplified])
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3835 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3836 | lemma explicit_subset_rel_interior_convex_hull_minimal: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3837 | fixes s :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3838 | shows "finite s | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3839 |          \<Longrightarrow> {y. \<exists>u. (\<forall>x \<in> s. 0 < u x) \<and> sum u s = 1 \<and> sum (\<lambda>x. u x *\<^sub>R x) s = y}
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3840 | \<subseteq> rel_interior (convex hull s)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3841 |   by (force simp add:  rel_interior_convex_hull_union [where S="\<lambda>x. {x}" and I=s, simplified])
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3842 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3843 | lemma rel_interior_convex_hull_explicit: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3844 | fixes s :: "'a::euclidean_space set" | 
| 69508 | 3845 | assumes "\<not> affine_dependent s" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3846 | shows "rel_interior(convex hull s) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3847 |          {y. \<exists>u. (\<forall>x \<in> s. 0 < u x) \<and> sum u s = 1 \<and> sum (\<lambda>x. u x *\<^sub>R x) s = y}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3848 | (is "?lhs = ?rhs") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3849 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3850 | show "?rhs \<le> ?lhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3851 | by (simp add: aff_independent_finite explicit_subset_rel_interior_convex_hull_minimal assms) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3852 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3853 | show "?lhs \<le> ?rhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3854 |   proof (cases "\<exists>a. s = {a}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3855 | case True then show "?lhs \<le> ?rhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3856 | by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3857 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3858 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3859 | have fs: "finite s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3860 | using assms by (simp add: aff_independent_finite) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3861 |     { fix a b and d::real
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3862 | assume ab: "a \<in> s" "b \<in> s" "a \<noteq> b" | 
| 67443 
3abf6a722518
standardized towards new-style formal comments: isabelle update_comments;
 wenzelm parents: 
67399diff
changeset | 3863 |       then have s: "s = (s - {a,b}) \<union> {a,b}" \<comment> \<open>split into separate cases\<close>
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3864 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3865 | have "(\<Sum>x\<in>s. if x = a then - d else if x = b then d else 0) = 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3866 | "(\<Sum>x\<in>s. (if x = a then - d else if x = b then d else 0) *\<^sub>R x) = d *\<^sub>R b - d *\<^sub>R a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3867 | using ab fs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3868 | by (subst s, subst sum.union_disjoint, auto)+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3869 | } note [simp] = this | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3870 |     { fix y
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3871 | assume y: "y \<in> convex hull s" "y \<notin> ?rhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3872 |       { fix u T a
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3873 | assume ua: "\<forall>x\<in>s. 0 \<le> u x" "sum u s = 1" "\<not> 0 < u a" "a \<in> s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3874 | and yT: "y = (\<Sum>x\<in>s. u x *\<^sub>R x)" "y \<in> T" "open T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3875 |            and sb: "T \<inter> affine hull s \<subseteq> {w. \<exists>u. (\<forall>x\<in>s. 0 \<le> u x) \<and> sum u s = 1 \<and> (\<Sum>x\<in>s. u x *\<^sub>R x) = w}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3876 | have ua0: "u a = 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3877 | using ua by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3878 | obtain b where b: "b\<in>s" "a \<noteq> b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3879 | using ua False by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3880 | obtain e where e: "0 < e" "ball (\<Sum>x\<in>s. u x *\<^sub>R x) e \<subseteq> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3881 | using yT by (auto elim: openE) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3882 | with b obtain d where d: "0 < d" "norm(d *\<^sub>R (a-b)) < e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3883 | by (auto intro: that [of "e / 2 / norm(a-b)"]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3884 | have "(\<Sum>x\<in>s. u x *\<^sub>R x) \<in> affine hull s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3885 | using yT y by (metis affine_hull_convex_hull hull_redundant_eq) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3886 | then have "(\<Sum>x\<in>s. u x *\<^sub>R x) - d *\<^sub>R (a - b) \<in> affine hull s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3887 | using ua b by (auto simp: hull_inc intro: mem_affine_3_minus2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3888 | then have "y - d *\<^sub>R (a - b) \<in> T \<inter> affine hull s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3889 | using d e yT by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3890 | then obtain v where "\<forall>x\<in>s. 0 \<le> v x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3891 | "sum v s = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3892 | "(\<Sum>x\<in>s. v x *\<^sub>R x) = (\<Sum>x\<in>s. u x *\<^sub>R x) - d *\<^sub>R (a - b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3893 | using subsetD [OF sb] yT | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3894 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3895 | then have False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3896 | using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3897 | apply (simp add: affine_dependent_explicit_finite fs) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3898 | apply (drule_tac x="\<lambda>x. (v x - u x) - (if x = a then -d else if x = b then d else 0)" in spec) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3899 | using ua b d | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3900 | apply (auto simp: algebra_simps sum_subtractf sum.distrib) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3901 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3902 | } note * = this | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3903 | have "y \<notin> rel_interior (convex hull s)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3904 | using y | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3905 | apply (simp add: mem_rel_interior affine_hull_convex_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3906 | apply (auto simp: convex_hull_finite [OF fs]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3907 | apply (drule_tac x=u in spec) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3908 | apply (auto intro: *) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3909 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3910 | } with rel_interior_subset show "?lhs \<le> ?rhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3911 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3912 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3913 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3914 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3915 | lemma interior_convex_hull_explicit_minimal: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3916 | fixes s :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3917 | shows | 
| 69508 | 3918 | "\<not> affine_dependent s | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3919 | ==> interior(convex hull s) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3920 |              (if card(s) \<le> DIM('a) then {}
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3921 |               else {y. \<exists>u. (\<forall>x \<in> s. 0 < u x) \<and> sum u s = 1 \<and> (\<Sum>x\<in>s. u x *\<^sub>R x) = y})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3922 | apply (simp add: aff_independent_finite empty_interior_convex_hull, clarify) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3923 | apply (rule trans [of _ "rel_interior(convex hull s)"]) | 
| 69508 | 3924 | apply (simp add: affine_independent_span_gt rel_interior_interior) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3925 | by (simp add: rel_interior_convex_hull_explicit) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3926 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3927 | lemma interior_convex_hull_explicit: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3928 | fixes s :: "'a::euclidean_space set" | 
| 69508 | 3929 | assumes "\<not> affine_dependent s" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3930 | shows | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3931 | "interior(convex hull s) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3932 |              (if card(s) \<le> DIM('a) then {}
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3933 |               else {y. \<exists>u. (\<forall>x \<in> s. 0 < u x \<and> u x < 1) \<and> sum u s = 1 \<and> (\<Sum>x\<in>s. u x *\<^sub>R x) = y})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3934 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3935 |   { fix u :: "'a \<Rightarrow> real" and a
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3936 | assume "card Basis < card s" and u: "\<And>x. x\<in>s \<Longrightarrow> 0 < u x" "sum u s = 1" and a: "a \<in> s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3937 | then have cs: "Suc 0 < card s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3938 | by (metis DIM_positive less_trans_Suc) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3939 | obtain b where b: "b \<in> s" "a \<noteq> b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3940 |     proof (cases "s \<le> {a}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3941 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3942 | then show thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3943 | using cs subset_singletonD by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3944 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3945 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3946 | then show thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3947 | by (blast intro: that) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3948 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3949 |     have "u a + u b \<le> sum u {a,b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3950 | using a b by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3951 | also have "... \<le> sum u s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3952 | apply (rule Groups_Big.sum_mono2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3953 | using a b u | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3954 | apply (auto simp: less_imp_le aff_independent_finite assms) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3955 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3956 | finally have "u a < 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3957 | using \<open>b \<in> s\<close> u by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3958 | } note [simp] = this | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3959 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3960 | using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3961 | apply (auto simp: interior_convex_hull_explicit_minimal) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3962 | apply (rule_tac x=u in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3963 | apply (auto simp: not_le) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3964 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3965 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3966 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3967 | lemma interior_closed_segment_ge2: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3968 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3969 |   assumes "2 \<le> DIM('a)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3970 |     shows  "interior(closed_segment a b) = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3971 | using assms unfolding segment_convex_hull | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3972 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3973 |   have "card {a, b} \<le> DIM('a)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3974 | using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3975 | by (simp add: card_insert_if linear not_less_eq_eq numeral_2_eq_2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3976 |   then show "interior (convex hull {a, b}) = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3977 | by (metis empty_interior_convex_hull finite.insertI finite.emptyI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3978 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3979 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3980 | lemma interior_open_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3981 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3982 | shows "interior(open_segment a b) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3983 |                  (if 2 \<le> DIM('a) then {} else open_segment a b)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3984 | proof (simp add: not_le, intro conjI impI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3985 |   assume "2 \<le> DIM('a)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3986 |   then show "interior (open_segment a b) = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3987 | apply (simp add: segment_convex_hull open_segment_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3988 | apply (metis Diff_subset interior_mono segment_convex_hull subset_empty interior_closed_segment_ge2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3989 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3990 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3991 |   assume le2: "DIM('a) < 2"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3992 | show "interior (open_segment a b) = open_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3993 | proof (cases "a = b") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3994 | case True then show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3995 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3996 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3997 | with le2 have "affine hull (open_segment a b) = UNIV" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3998 | apply simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3999 | apply (rule affine_independent_span_gt) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4000 | apply (simp_all add: affine_dependent_def insert_Diff_if) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4001 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4002 | then show "interior (open_segment a b) = open_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4003 | using rel_interior_interior rel_interior_open_segment by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4004 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4005 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4006 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4007 | lemma interior_closed_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4008 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4009 | shows "interior(closed_segment a b) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4010 |                  (if 2 \<le> DIM('a) then {} else open_segment a b)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4011 | proof (cases "a = b") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4012 | case True then show ?thesis by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4013 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4014 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4015 | then have "closure (open_segment a b) = closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4016 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4017 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4018 | by (metis (no_types) convex_interior_closure convex_open_segment interior_open_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4019 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4020 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4021 | lemmas interior_segment = interior_closed_segment interior_open_segment | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4022 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4023 | lemma closed_segment_eq [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4024 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4025 |   shows "closed_segment a b = closed_segment c d \<longleftrightarrow> {a,b} = {c,d}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4026 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4027 | assume abcd: "closed_segment a b = closed_segment c d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4028 |   show "{a,b} = {c,d}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4029 | proof (cases "a=b \<or> c=d") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4030 | case True with abcd show ?thesis by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4031 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4032 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4033 | then have neq: "a \<noteq> b \<and> c \<noteq> d" by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4034 |     have *: "closed_segment c d - {a, b} = rel_interior (closed_segment c d)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4035 | using neq abcd by (metis (no_types) open_segment_def rel_interior_closed_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4036 |     have "b \<in> {c, d}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4037 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4038 | have "insert b (closed_segment c d) = closed_segment c d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4039 | using abcd by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4040 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4041 | by (metis DiffD2 Diff_insert2 False * insertI1 insert_Diff_if open_segment_def rel_interior_closed_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4042 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4043 |     moreover have "a \<in> {c, d}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4044 | by (metis Diff_iff False * abcd ends_in_segment(1) insertI1 open_segment_def rel_interior_closed_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4045 |     ultimately show "{a, b} = {c, d}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4046 | using neq by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4047 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4048 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4049 |   assume "{a,b} = {c,d}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4050 | then show "closed_segment a b = closed_segment c d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4051 | by (simp add: segment_convex_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4052 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4053 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4054 | lemma closed_open_segment_eq [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4055 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4056 | shows "closed_segment a b \<noteq> open_segment c d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4057 | by (metis DiffE closed_segment_neq_empty closure_closed_segment closure_open_segment ends_in_segment(1) insertI1 open_segment_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4058 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4059 | lemma open_closed_segment_eq [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4060 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4061 | shows "open_segment a b \<noteq> closed_segment c d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4062 | using closed_open_segment_eq by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4063 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4064 | lemma open_segment_eq [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4065 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4066 |   shows "open_segment a b = open_segment c d \<longleftrightarrow> a = b \<and> c = d \<or> {a,b} = {c,d}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4067 | (is "?lhs = ?rhs") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4068 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4069 | assume abcd: ?lhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4070 | show ?rhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4071 | proof (cases "a=b \<or> c=d") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4072 | case True with abcd show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4073 | using finite_open_segment by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4074 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4075 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4076 | then have a2: "a \<noteq> b \<and> c \<noteq> d" by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4077 | with abcd show ?rhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4078 | unfolding open_segment_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4079 | by (metis (no_types) abcd closed_segment_eq closure_open_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4080 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4081 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4082 | assume ?rhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4083 | then show ?lhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4084 | by (metis Diff_cancel convex_hull_singleton insert_absorb2 open_segment_def segment_convex_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4085 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4086 | |
| 70136 | 4087 | subsection\<^marker>\<open>tag unimportant\<close>\<open>Similar results for closure and (relative or absolute) frontier\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4088 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4089 | lemma closure_convex_hull [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4090 | fixes s :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4091 | shows "compact s ==> closure(convex hull s) = convex hull s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4092 | by (simp add: compact_imp_closed compact_convex_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4093 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4094 | lemma rel_frontier_convex_hull_explicit: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4095 | fixes s :: "'a::euclidean_space set" | 
| 69508 | 4096 | assumes "\<not> affine_dependent s" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4097 | shows "rel_frontier(convex hull s) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4098 |          {y. \<exists>u. (\<forall>x \<in> s. 0 \<le> u x) \<and> (\<exists>x \<in> s. u x = 0) \<and> sum u s = 1 \<and> sum (\<lambda>x. u x *\<^sub>R x) s = y}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4099 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4100 | have fs: "finite s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4101 | using assms by (simp add: aff_independent_finite) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4102 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4103 | apply (simp add: rel_frontier_def finite_imp_compact rel_interior_convex_hull_explicit assms fs) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4104 | apply (auto simp: convex_hull_finite fs) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4105 | apply (drule_tac x=u in spec) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4106 | apply (rule_tac x=u in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4107 | apply force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4108 | apply (rename_tac v) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4109 | apply (rule notE [OF assms]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4110 | apply (simp add: affine_dependent_explicit) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4111 | apply (rule_tac x=s in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4112 | apply (auto simp: fs) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4113 | apply (rule_tac x = "\<lambda>x. u x - v x" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4114 | apply (force simp: sum_subtractf scaleR_diff_left) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4115 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4116 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4117 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4118 | lemma frontier_convex_hull_explicit: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4119 | fixes s :: "'a::euclidean_space set" | 
| 69508 | 4120 | assumes "\<not> affine_dependent s" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4121 | shows "frontier(convex hull s) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4122 |          {y. \<exists>u. (\<forall>x \<in> s. 0 \<le> u x) \<and> (DIM ('a) < card s \<longrightarrow> (\<exists>x \<in> s. u x = 0)) \<and>
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4123 | sum u s = 1 \<and> sum (\<lambda>x. u x *\<^sub>R x) s = y}" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4124 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4125 | have fs: "finite s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4126 | using assms by (simp add: aff_independent_finite) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4127 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4128 |   proof (cases "DIM ('a) < card s")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4129 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4130 | with assms fs show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4131 | by (simp add: rel_frontier_def frontier_def rel_frontier_convex_hull_explicit [symmetric] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4132 | interior_convex_hull_explicit_minimal rel_interior_convex_hull_explicit) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4133 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4134 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4135 |     then have "card s \<le> DIM ('a)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4136 | by linarith | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4137 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4138 | using assms fs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4139 | apply (simp add: frontier_def interior_convex_hull_explicit finite_imp_compact) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4140 | apply (simp add: convex_hull_finite) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4141 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4142 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4143 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4144 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4145 | lemma rel_frontier_convex_hull_cases: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4146 | fixes s :: "'a::euclidean_space set" | 
| 69508 | 4147 | assumes "\<not> affine_dependent s" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4148 |   shows "rel_frontier(convex hull s) = \<Union>{convex hull (s - {x}) |x. x \<in> s}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4149 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4150 | have fs: "finite s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4151 | using assms by (simp add: aff_independent_finite) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4152 |   { fix u a
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4153 | have "\<forall>x\<in>s. 0 \<le> u x \<Longrightarrow> a \<in> s \<Longrightarrow> u a = 0 \<Longrightarrow> sum u s = 1 \<Longrightarrow> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4154 | \<exists>x v. x \<in> s \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4155 |                   (\<forall>x\<in>s - {x}. 0 \<le> v x) \<and>
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4156 |                       sum v (s - {x}) = 1 \<and> (\<Sum>x\<in>s - {x}. v x *\<^sub>R x) = (\<Sum>x\<in>s. u x *\<^sub>R x)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4157 | apply (rule_tac x=a in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4158 | apply (rule_tac x=u in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4159 | apply (simp add: Groups_Big.sum_diff1 fs) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4160 | done } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4161 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4162 |   { fix a u
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4163 |     have "a \<in> s \<Longrightarrow> \<forall>x\<in>s - {a}. 0 \<le> u x \<Longrightarrow> sum u (s - {a}) = 1 \<Longrightarrow>
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4164 | \<exists>v. (\<forall>x\<in>s. 0 \<le> v x) \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4165 |                  (\<exists>x\<in>s. v x = 0) \<and> sum v s = 1 \<and> (\<Sum>x\<in>s. v x *\<^sub>R x) = (\<Sum>x\<in>s - {a}. u x *\<^sub>R x)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4166 | apply (rule_tac x="\<lambda>x. if x = a then 0 else u x" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4167 | apply (auto simp: sum.If_cases Diff_eq if_smult fs) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4168 | done } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4169 | ultimately show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4170 | using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4171 | apply (simp add: rel_frontier_convex_hull_explicit) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4172 | apply (simp add: convex_hull_finite fs Union_SetCompr_eq, auto) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4173 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4174 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4175 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4176 | lemma frontier_convex_hull_eq_rel_frontier: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4177 | fixes s :: "'a::euclidean_space set" | 
| 69508 | 4178 | assumes "\<not> affine_dependent s" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4179 | shows "frontier(convex hull s) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4180 |            (if card s \<le> DIM ('a) then convex hull s else rel_frontier(convex hull s))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4181 | using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4182 | unfolding rel_frontier_def frontier_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4183 | by (simp add: affine_independent_span_gt rel_interior_interior | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4184 | finite_imp_compact empty_interior_convex_hull aff_independent_finite) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4185 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4186 | lemma frontier_convex_hull_cases: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4187 | fixes s :: "'a::euclidean_space set" | 
| 69508 | 4188 | assumes "\<not> affine_dependent s" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4189 | shows "frontier(convex hull s) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4190 |            (if card s \<le> DIM ('a) then convex hull s else \<Union>{convex hull (s - {x}) |x. x \<in> s})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4191 | by (simp add: assms frontier_convex_hull_eq_rel_frontier rel_frontier_convex_hull_cases) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4192 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4193 | lemma in_frontier_convex_hull: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4194 | fixes s :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4195 |   assumes "finite s" "card s \<le> Suc (DIM ('a))" "x \<in> s"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4196 | shows "x \<in> frontier(convex hull s)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4197 | proof (cases "affine_dependent s") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4198 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4199 | with assms show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4200 | apply (auto simp: affine_dependent_def frontier_def finite_imp_compact hull_inc) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4201 | by (metis card.insert_remove convex_hull_subset_affine_hull empty_interior_affine_hull finite_Diff hull_redundant insert_Diff insert_Diff_single insert_not_empty interior_mono not_less_eq_eq subset_empty) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4202 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4203 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4204 |   { assume "card s = Suc (card Basis)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4205 | then have cs: "Suc 0 < card s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4206 | by (simp add: DIM_positive) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4207 | with subset_singletonD have "\<exists>y \<in> s. y \<noteq> x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4208 |       by (cases "s \<le> {x}") fastforce+
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4209 | } note [dest!] = this | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4210 | show ?thesis using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4211 | unfolding frontier_convex_hull_cases [OF False] Union_SetCompr_eq | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4212 | by (auto simp: le_Suc_eq hull_inc) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4213 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4214 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4215 | lemma not_in_interior_convex_hull: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4216 | fixes s :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4217 |   assumes "finite s" "card s \<le> Suc (DIM ('a))" "x \<in> s"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4218 | shows "x \<notin> interior(convex hull s)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4219 | using in_frontier_convex_hull [OF assms] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4220 | by (metis Diff_iff frontier_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4221 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4222 | lemma interior_convex_hull_eq_empty: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4223 | fixes s :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4224 |   assumes "card s = Suc (DIM ('a))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4225 |   shows   "interior(convex hull s) = {} \<longleftrightarrow> affine_dependent s"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4226 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4227 |   { fix a b
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4228 |     assume ab: "a \<in> interior (convex hull s)" "b \<in> s" "b \<in> affine hull (s - {b})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4229 |     then have "interior(affine hull s) = {}" using assms
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4230 | by (metis DIM_positive One_nat_def Suc_mono card.remove card_infinite empty_interior_affine_hull eq_iff hull_redundant insert_Diff not_less zero_le_one) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4231 | then have False using ab | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4232 | by (metis convex_hull_subset_affine_hull equals0D interior_mono subset_eq) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4233 | } then | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4234 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4235 | using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4236 | apply auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4237 | apply (metis UNIV_I affine_hull_convex_hull affine_hull_empty affine_independent_span_eq convex_convex_hull empty_iff rel_interior_interior rel_interior_same_affine_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4238 | apply (auto simp: affine_dependent_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4239 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4240 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4241 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4242 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4243 | subsection \<open>Coplanarity, and collinearity in terms of affine hull\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4244 | |
| 70136 | 4245 | definition\<^marker>\<open>tag important\<close> coplanar where | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4246 |    "coplanar s \<equiv> \<exists>u v w. s \<subseteq> affine hull {u,v,w}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4247 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4248 | lemma collinear_affine_hull: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4249 |   "collinear s \<longleftrightarrow> (\<exists>u v. s \<subseteq> affine hull {u,v})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4250 | proof (cases "s={}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4251 | case True then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4252 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4253 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4254 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4255 | then obtain x where x: "x \<in> s" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4256 |   { fix u
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4257 | assume *: "\<And>x y. \<lbrakk>x\<in>s; y\<in>s\<rbrakk> \<Longrightarrow> \<exists>c. x - y = c *\<^sub>R u" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4258 |     have "\<exists>u v. s \<subseteq> {a *\<^sub>R u + b *\<^sub>R v |a b. a + b = 1}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4259 | apply (rule_tac x=x in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4260 | apply (rule_tac x="x+u" in exI, clarify) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4261 | apply (erule exE [OF * [OF x]]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4262 | apply (rename_tac c) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4263 | apply (rule_tac x="1+c" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4264 | apply (rule_tac x="-c" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4265 | apply (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4266 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4267 | } moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4268 |   { fix u v x y
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4269 |     assume *: "s \<subseteq> {a *\<^sub>R u + b *\<^sub>R v |a b. a + b = 1}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4270 | have "x\<in>s \<Longrightarrow> y\<in>s \<Longrightarrow> \<exists>c. x - y = c *\<^sub>R (v-u)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4271 | apply (drule subsetD [OF *])+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4272 | apply simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4273 | apply clarify | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4274 | apply (rename_tac r1 r2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4275 | apply (rule_tac x="r1-r2" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4276 | apply (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4277 | apply (metis scaleR_left.add) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4278 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4279 | } ultimately | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4280 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4281 | unfolding collinear_def affine_hull_2 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4282 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4283 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4284 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4285 | lemma collinear_closed_segment [simp]: "collinear (closed_segment a b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4286 | by (metis affine_hull_convex_hull collinear_affine_hull hull_subset segment_convex_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4287 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4288 | lemma collinear_open_segment [simp]: "collinear (open_segment a b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4289 | unfolding open_segment_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4290 | by (metis convex_hull_subset_affine_hull segment_convex_hull dual_order.trans | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4291 | convex_hull_subset_affine_hull Diff_subset collinear_affine_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4292 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4293 | lemma collinear_between_cases: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4294 | fixes c :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4295 |   shows "collinear {a,b,c} \<longleftrightarrow> between (b,c) a \<or> between (c,a) b \<or> between (a,b) c"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4296 | (is "?lhs = ?rhs") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4297 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4298 | assume ?lhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4299 |   then obtain u v where uv: "\<And>x. x \<in> {a, b, c} \<Longrightarrow> \<exists>c. x = u + c *\<^sub>R v"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4300 | by (auto simp: collinear_alt) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4301 | show ?rhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4302 | using uv [of a] uv [of b] uv [of c] by (auto simp: between_1) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4303 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4304 | assume ?rhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4305 | then show ?lhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4306 | unfolding between_mem_convex_hull | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4307 | by (metis (no_types, hide_lams) collinear_closed_segment collinear_subset hull_redundant hull_subset insert_commute segment_convex_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4308 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4309 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4310 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4311 | lemma subset_continuous_image_segment_1: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4312 | fixes f :: "'a::euclidean_space \<Rightarrow> real" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4313 | assumes "continuous_on (closed_segment a b) f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4314 | shows "closed_segment (f a) (f b) \<subseteq> image f (closed_segment a b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4315 | by (metis connected_segment convex_contains_segment ends_in_segment imageI | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4316 | is_interval_connected_1 is_interval_convex connected_continuous_image [OF assms]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4317 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4318 | lemma continuous_injective_image_segment_1: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4319 | fixes f :: "'a::euclidean_space \<Rightarrow> real" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4320 | assumes contf: "continuous_on (closed_segment a b) f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4321 | and injf: "inj_on f (closed_segment a b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4322 | shows "f ` (closed_segment a b) = closed_segment (f a) (f b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4323 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4324 | show "closed_segment (f a) (f b) \<subseteq> f ` closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4325 | by (metis subset_continuous_image_segment_1 contf) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4326 | show "f ` closed_segment a b \<subseteq> closed_segment (f a) (f b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4327 | proof (cases "a = b") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4328 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4329 | then show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4330 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4331 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4332 | then have fnot: "f a \<noteq> f b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4333 | using inj_onD injf by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4334 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4335 | have "f a \<notin> open_segment (f c) (f b)" if c: "c \<in> closed_segment a b" for c | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4336 | proof (clarsimp simp add: open_segment_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4337 | assume fa: "f a \<in> closed_segment (f c) (f b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4338 | moreover have "closed_segment (f c) (f b) \<subseteq> f ` closed_segment c b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4339 | by (meson closed_segment_subset contf continuous_on_subset convex_closed_segment ends_in_segment(2) subset_continuous_image_segment_1 that) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4340 | ultimately have "f a \<in> f ` closed_segment c b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4341 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4342 | then have a: "a \<in> closed_segment c b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4343 | by (meson ends_in_segment inj_on_image_mem_iff_alt injf subset_closed_segment that) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4344 | have cb: "closed_segment c b \<subseteq> closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4345 | by (simp add: closed_segment_subset that) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4346 | show "f a = f c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4347 | proof (rule between_antisym) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4348 | show "between (f c, f b) (f a)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4349 | by (simp add: between_mem_segment fa) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4350 | show "between (f a, f b) (f c)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4351 | by (metis a cb between_antisym between_mem_segment between_triv1 subset_iff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4352 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4353 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4354 | moreover | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4355 | have "f b \<notin> open_segment (f a) (f c)" if c: "c \<in> closed_segment a b" for c | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4356 | proof (clarsimp simp add: open_segment_def fnot eq_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4357 | assume fb: "f b \<in> closed_segment (f a) (f c)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4358 | moreover have "closed_segment (f a) (f c) \<subseteq> f ` closed_segment a c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4359 | by (meson contf continuous_on_subset ends_in_segment(1) subset_closed_segment subset_continuous_image_segment_1 that) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4360 | ultimately have "f b \<in> f ` closed_segment a c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4361 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4362 | then have b: "b \<in> closed_segment a c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4363 | by (meson ends_in_segment inj_on_image_mem_iff_alt injf subset_closed_segment that) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4364 | have ca: "closed_segment a c \<subseteq> closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4365 | by (simp add: closed_segment_subset that) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4366 | show "f b = f c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4367 | proof (rule between_antisym) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4368 | show "between (f c, f a) (f b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4369 | by (simp add: between_commute between_mem_segment fb) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4370 | show "between (f b, f a) (f c)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4371 | by (metis b between_antisym between_commute between_mem_segment between_triv2 that) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4372 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4373 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4374 | ultimately show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4375 | by (force simp: closed_segment_eq_real_ivl open_segment_eq_real_ivl split: if_split_asm) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4376 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4377 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4378 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4379 | lemma continuous_injective_image_open_segment_1: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4380 | fixes f :: "'a::euclidean_space \<Rightarrow> real" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4381 | assumes contf: "continuous_on (closed_segment a b) f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4382 | and injf: "inj_on f (closed_segment a b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4383 | shows "f ` (open_segment a b) = open_segment (f a) (f b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4384 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4385 |   have "f ` (open_segment a b) = f ` (closed_segment a b) - {f a, f b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4386 | by (metis (no_types, hide_lams) empty_subsetI ends_in_segment image_insert image_is_empty inj_on_image_set_diff injf insert_subset open_segment_def segment_open_subset_closed) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4387 | also have "... = open_segment (f a) (f b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4388 | using continuous_injective_image_segment_1 [OF assms] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4389 | by (simp add: open_segment_def inj_on_image_set_diff [OF injf]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4390 | finally show ?thesis . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4391 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4392 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4393 | lemma collinear_imp_coplanar: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4394 | "collinear s ==> coplanar s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4395 | by (metis collinear_affine_hull coplanar_def insert_absorb2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4396 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4397 | lemma collinear_small: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4398 | assumes "finite s" "card s \<le> 2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4399 | shows "collinear s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4400 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4401 | have "card s = 0 \<or> card s = 1 \<or> card s = 2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4402 | using assms by linarith | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4403 | then show ?thesis using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4404 | using card_eq_SucD | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4405 | by auto (metis collinear_2 numeral_2_eq_2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4406 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4407 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4408 | lemma coplanar_small: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4409 | assumes "finite s" "card s \<le> 3" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4410 | shows "coplanar s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4411 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4412 | have "card s \<le> 2 \<or> card s = Suc (Suc (Suc 0))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4413 | using assms by linarith | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4414 | then show ?thesis using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4415 | apply safe | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4416 | apply (simp add: collinear_small collinear_imp_coplanar) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4417 | apply (safe dest!: card_eq_SucD) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4418 | apply (auto simp: coplanar_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4419 | apply (metis hull_subset insert_subset) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4420 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4421 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4422 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4423 | lemma coplanar_empty: "coplanar {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4424 | by (simp add: coplanar_small) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4425 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4426 | lemma coplanar_sing: "coplanar {a}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4427 | by (simp add: coplanar_small) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4428 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4429 | lemma coplanar_2: "coplanar {a,b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4430 | by (auto simp: card_insert_if coplanar_small) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4431 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4432 | lemma coplanar_3: "coplanar {a,b,c}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4433 | by (auto simp: card_insert_if coplanar_small) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4434 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4435 | lemma collinear_affine_hull_collinear: "collinear(affine hull s) \<longleftrightarrow> collinear s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4436 | unfolding collinear_affine_hull | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4437 | by (metis affine_affine_hull subset_hull hull_hull hull_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4438 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4439 | lemma coplanar_affine_hull_coplanar: "coplanar(affine hull s) \<longleftrightarrow> coplanar s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4440 | unfolding coplanar_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4441 | by (metis affine_affine_hull subset_hull hull_hull hull_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4442 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4443 | lemma coplanar_linear_image: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4444 | fixes f :: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4445 | assumes "coplanar s" "linear f" shows "coplanar(f ` s)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4446 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4447 |   { fix u v w
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4448 |     assume "s \<subseteq> affine hull {u, v, w}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4449 |     then have "f ` s \<subseteq> f ` (affine hull {u, v, w})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4450 | by (simp add: image_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4451 |     then have "f ` s \<subseteq> affine hull (f ` {u, v, w})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4452 | by (metis assms(2) linear_conv_bounded_linear affine_hull_linear_image) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4453 | } then | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4454 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4455 | by auto (meson assms(1) coplanar_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4456 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4457 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4458 | lemma coplanar_translation_imp: "coplanar s \<Longrightarrow> coplanar ((\<lambda>x. a + x) ` s)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4459 | unfolding coplanar_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4460 | apply clarify | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4461 | apply (rule_tac x="u+a" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4462 | apply (rule_tac x="v+a" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4463 | apply (rule_tac x="w+a" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4464 |   using affine_hull_translation [of a "{u,v,w}" for u v w]
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4465 | apply (force simp: add.commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4466 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4467 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4468 | lemma coplanar_translation_eq: "coplanar((\<lambda>x. a + x) ` s) \<longleftrightarrow> coplanar s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4469 | by (metis (no_types) coplanar_translation_imp translation_galois) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4470 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4471 | lemma coplanar_linear_image_eq: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4472 | fixes f :: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4473 | assumes "linear f" "inj f" shows "coplanar(f ` s) = coplanar s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4474 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4475 | assume "coplanar s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4476 | then show "coplanar (f ` s)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4477 | unfolding coplanar_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4478 |     using affine_hull_linear_image [of f "{u,v,w}" for u v w]  assms
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4479 | by (meson coplanar_def coplanar_linear_image) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4480 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4481 | obtain g where g: "linear g" "g \<circ> f = id" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4482 | using linear_injective_left_inverse [OF assms] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4483 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4484 | assume "coplanar (f ` s)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4485 |   then obtain u v w where "f ` s \<subseteq> affine hull {u, v, w}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4486 | by (auto simp: coplanar_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4487 |   then have "g ` f ` s \<subseteq> g ` (affine hull {u, v, w})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4488 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4489 |   then have "s \<subseteq> g ` (affine hull {u, v, w})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4490 | using g by (simp add: Fun.image_comp) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4491 | then show "coplanar s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4492 | unfolding coplanar_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4493 |     using affine_hull_linear_image [of g "{u,v,w}" for u v w]  \<open>linear g\<close> linear_conv_bounded_linear
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4494 | by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4495 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4496 | (*The HOL Light proof is simply | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4497 | MATCH_ACCEPT_TAC(LINEAR_INVARIANT_RULE COPLANAR_LINEAR_IMAGE));; | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4498 | *) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4499 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4500 | lemma coplanar_subset: "\<lbrakk>coplanar t; s \<subseteq> t\<rbrakk> \<Longrightarrow> coplanar s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4501 | by (meson coplanar_def order_trans) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4502 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4503 | lemma affine_hull_3_imp_collinear: "c \<in> affine hull {a,b} \<Longrightarrow> collinear {a,b,c}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4504 | by (metis collinear_2 collinear_affine_hull_collinear hull_redundant insert_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4505 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4506 | lemma collinear_3_imp_in_affine_hull: "\<lbrakk>collinear {a,b,c}; a \<noteq> b\<rbrakk> \<Longrightarrow> c \<in> affine hull {a,b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4507 | unfolding collinear_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4508 | apply clarify | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4509 | apply (frule_tac x=b in bspec, blast, drule_tac x=a in bspec, blast, erule exE) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4510 | apply (drule_tac x=c in bspec, blast, drule_tac x=a in bspec, blast, erule exE) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4511 | apply (rename_tac y x) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4512 | apply (simp add: affine_hull_2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4513 | apply (rule_tac x="1 - x/y" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4514 | apply (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4515 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4516 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4517 | lemma collinear_3_affine_hull: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4518 | assumes "a \<noteq> b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4519 |     shows "collinear {a,b,c} \<longleftrightarrow> c \<in> affine hull {a,b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4520 | using affine_hull_3_imp_collinear assms collinear_3_imp_in_affine_hull by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4521 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4522 | lemma collinear_3_eq_affine_dependent: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4523 |   "collinear{a,b,c} \<longleftrightarrow> a = b \<or> a = c \<or> b = c \<or> affine_dependent {a,b,c}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4524 | apply (case_tac "a=b", simp) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4525 | apply (case_tac "a=c") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4526 | apply (simp add: insert_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4527 | apply (case_tac "b=c") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4528 | apply (simp add: insert_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4529 | apply (auto simp: affine_dependent_def collinear_3_affine_hull insert_Diff_if) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4530 | apply (metis collinear_3_affine_hull insert_commute)+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4531 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4532 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4533 | lemma affine_dependent_imp_collinear_3: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4534 |   "affine_dependent {a,b,c} \<Longrightarrow> collinear{a,b,c}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4535 | by (simp add: collinear_3_eq_affine_dependent) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4536 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4537 | lemma collinear_3: "NO_MATCH 0 x \<Longrightarrow> collinear {x,y,z} \<longleftrightarrow> collinear {0, x-y, z-y}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4538 | by (auto simp add: collinear_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4539 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4540 | lemma collinear_3_expand: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4541 |    "collinear{a,b,c} \<longleftrightarrow> a = c \<or> (\<exists>u. b = u *\<^sub>R a + (1 - u) *\<^sub>R c)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4542 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4543 |   have "collinear{a,b,c} = collinear{a,c,b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4544 | by (simp add: insert_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4545 |   also have "... = collinear {0, a - c, b - c}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4546 | by (simp add: collinear_3) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4547 | also have "... \<longleftrightarrow> (a = c \<or> b = c \<or> (\<exists>ca. b - c = ca *\<^sub>R (a - c)))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4548 | by (simp add: collinear_lemma) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4549 | also have "... \<longleftrightarrow> a = c \<or> (\<exists>u. b = u *\<^sub>R a + (1 - u) *\<^sub>R c)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4550 | by (cases "a = c \<or> b = c") (auto simp: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4551 | finally show ?thesis . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4552 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4553 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4554 | lemma collinear_aff_dim: "collinear S \<longleftrightarrow> aff_dim S \<le> 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4555 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4556 | assume "collinear S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4557 |   then obtain u and v :: "'a" where "aff_dim S \<le> aff_dim {u,v}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4558 | by (metis \<open>collinear S\<close> aff_dim_affine_hull aff_dim_subset collinear_affine_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4559 | then show "aff_dim S \<le> 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4560 | using order_trans by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4561 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4562 | assume "aff_dim S \<le> 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4563 | then have le1: "aff_dim (affine hull S) \<le> 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4564 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4565 | obtain B where "B \<subseteq> S" and B: "\<not> affine_dependent B" "affine hull S = affine hull B" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4566 | using affine_basis_exists [of S] by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4567 | then have "finite B" "card B \<le> 2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4568 | using B le1 by (auto simp: affine_independent_iff_card) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4569 | then have "collinear B" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4570 | by (rule collinear_small) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4571 | then show "collinear S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4572 | by (metis \<open>affine hull S = affine hull B\<close> collinear_affine_hull_collinear) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4573 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4574 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4575 | lemma collinear_midpoint: "collinear{a,midpoint a b,b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4576 | apply (auto simp: collinear_3 collinear_lemma) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4577 | apply (drule_tac x="-1" in spec) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4578 | apply (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4579 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4580 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4581 | lemma midpoint_collinear: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4582 | fixes a b c :: "'a::real_normed_vector" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4583 | assumes "a \<noteq> c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4584 |     shows "b = midpoint a c \<longleftrightarrow> collinear{a,b,c} \<and> dist a b = dist b c"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4585 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4586 | have *: "a - (u *\<^sub>R a + (1 - u) *\<^sub>R c) = (1 - u) *\<^sub>R (a - c)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4587 | "u *\<^sub>R a + (1 - u) *\<^sub>R c - c = u *\<^sub>R (a - c)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4588 | "\<bar>1 - u\<bar> = \<bar>u\<bar> \<longleftrightarrow> u = 1/2" for u::real | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4589 | by (auto simp: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4590 |   have "b = midpoint a c \<Longrightarrow> collinear{a,b,c} "
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4591 | using collinear_midpoint by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4592 |   moreover have "collinear{a,b,c} \<Longrightarrow> b = midpoint a c \<longleftrightarrow> dist a b = dist b c"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4593 | apply (auto simp: collinear_3_expand assms dist_midpoint) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4594 | apply (simp add: dist_norm * assms midpoint_def del: divide_const_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4595 | apply (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4596 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4597 | ultimately show ?thesis by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4598 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4599 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4600 | lemma between_imp_collinear: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4601 | fixes x :: "'a :: euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4602 | assumes "between (a,b) x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4603 |     shows "collinear {a,x,b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4604 | proof (cases "x = a \<or> x = b \<or> a = b") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4605 | case True with assms show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4606 | by (auto simp: dist_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4607 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4608 | case False with assms show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4609 | apply (auto simp: collinear_3 collinear_lemma between_norm) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4610 | apply (drule_tac x="-(norm(b - x) / norm(x - a))" in spec) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4611 | apply (simp add: vector_add_divide_simps eq_vector_fraction_iff real_vector.scale_minus_right [symmetric]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4612 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4613 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4614 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4615 | lemma midpoint_between: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4616 | fixes a b :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4617 | shows "b = midpoint a c \<longleftrightarrow> between (a,c) b \<and> dist a b = dist b c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4618 | proof (cases "a = c") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4619 | case True then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4620 | by (auto simp: dist_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4621 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4622 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4623 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4624 | apply (rule iffI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4625 | apply (simp add: between_midpoint(1) dist_midpoint) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4626 | using False between_imp_collinear midpoint_collinear by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4627 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4628 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4629 | lemma collinear_triples: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4630 | assumes "a \<noteq> b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4631 |     shows "collinear(insert a (insert b S)) \<longleftrightarrow> (\<forall>x \<in> S. collinear{a,b,x})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4632 | (is "?lhs = ?rhs") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4633 | proof safe | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4634 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4635 | assume ?lhs and "x \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4636 |   then show "collinear {a, b, x}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4637 | using collinear_subset by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4638 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4639 | assume ?rhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4640 |   then have "\<forall>x \<in> S. collinear{a,x,b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4641 | by (simp add: insert_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4642 | then have *: "\<exists>u. x = u *\<^sub>R a + (1 - u) *\<^sub>R b" if "x \<in> (insert a (insert b S))" for x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4643 | using that assms collinear_3_expand by fastforce+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4644 | show ?lhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4645 | unfolding collinear_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4646 | apply (rule_tac x="b-a" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4647 | apply (clarify dest!: *) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4648 | by (metis (no_types, hide_lams) add.commute diff_add_cancel diff_diff_eq2 real_vector.scale_right_diff_distrib scaleR_left.diff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4649 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4650 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4651 | lemma collinear_4_3: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4652 | assumes "a \<noteq> b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4653 |     shows "collinear {a,b,c,d} \<longleftrightarrow> collinear{a,b,c} \<and> collinear{a,b,d}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4654 |   using collinear_triples [OF assms, of "{c,d}"] by (force simp:)
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4655 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4656 | lemma collinear_3_trans: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4657 |   assumes "collinear{a,b,c}" "collinear{b,c,d}" "b \<noteq> c"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4658 |     shows "collinear{a,b,d}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4659 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4660 |   have "collinear{b,c,a,d}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4661 | by (metis (full_types) assms collinear_4_3 insert_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4662 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4663 | by (simp add: collinear_subset) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4664 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4665 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4666 | lemma affine_hull_eq_empty [simp]: "affine hull S = {} \<longleftrightarrow> S = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4667 | using affine_hull_nonempty by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4668 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4669 | lemma affine_hull_2_alt: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4670 | fixes a b :: "'a::real_vector" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4671 |   shows "affine hull {a,b} = range (\<lambda>u. a + u *\<^sub>R (b - a))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4672 | apply (simp add: affine_hull_2, safe) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4673 | apply (rule_tac x=v in image_eqI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4674 | apply (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4675 | apply (metis scaleR_add_left scaleR_one, simp) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4676 | apply (rule_tac x="1-u" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4677 | apply (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4678 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4679 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4680 | lemma interior_convex_hull_3_minimal: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4681 | fixes a :: "'a::euclidean_space" | 
| 69508 | 4682 |   shows "\<lbrakk>\<not> collinear{a,b,c}; DIM('a) = 2\<rbrakk>
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4683 |          \<Longrightarrow> interior(convex hull {a,b,c}) =
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4684 |                 {v. \<exists>x y z. 0 < x \<and> 0 < y \<and> 0 < z \<and> x + y + z = 1 \<and>
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4685 | x *\<^sub>R a + y *\<^sub>R b + z *\<^sub>R c = v}" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4686 | apply (simp add: collinear_3_eq_affine_dependent interior_convex_hull_explicit_minimal, safe) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4687 | apply (rule_tac x="u a" in exI, simp) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4688 | apply (rule_tac x="u b" in exI, simp) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4689 | apply (rule_tac x="u c" in exI, simp) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4690 | apply (rename_tac uu x y z) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4691 | apply (rule_tac x="\<lambda>r. (if r=a then x else if r=b then y else if r=c then z else 0)" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4692 | apply simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4693 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4694 | |
| 66884 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 4695 | |
| 70136 | 4696 | subsection\<^marker>\<open>tag unimportant\<close>\<open>Basic lemmas about hyperplanes and halfspaces\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4697 | |
| 69516 
09bb8f470959
most of Topology_Euclidean_Space (now Elementary_Topology) requires fewer dependencies
 immler parents: 
69508diff
changeset | 4698 | lemma halfspace_Int_eq: | 
| 
09bb8f470959
most of Topology_Euclidean_Space (now Elementary_Topology) requires fewer dependencies
 immler parents: 
69508diff
changeset | 4699 |      "{x. a \<bullet> x \<le> b} \<inter> {x. b \<le> a \<bullet> x} = {x. a \<bullet> x = b}"
 | 
| 
09bb8f470959
most of Topology_Euclidean_Space (now Elementary_Topology) requires fewer dependencies
 immler parents: 
69508diff
changeset | 4700 |      "{x. b \<le> a \<bullet> x} \<inter> {x. a \<bullet> x \<le> b} = {x. a \<bullet> x = b}"
 | 
| 
09bb8f470959
most of Topology_Euclidean_Space (now Elementary_Topology) requires fewer dependencies
 immler parents: 
69508diff
changeset | 4701 | by auto | 
| 
09bb8f470959
most of Topology_Euclidean_Space (now Elementary_Topology) requires fewer dependencies
 immler parents: 
69508diff
changeset | 4702 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4703 | lemma hyperplane_eq_Ex: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4704 | assumes "a \<noteq> 0" obtains x where "a \<bullet> x = b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4705 | by (rule_tac x = "(b / (a \<bullet> a)) *\<^sub>R a" in that) (simp add: assms) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4706 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4707 | lemma hyperplane_eq_empty: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4708 |      "{x. a \<bullet> x = b} = {} \<longleftrightarrow> a = 0 \<and> b \<noteq> 0"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4709 | using hyperplane_eq_Ex apply auto[1] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4710 | using inner_zero_right by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4711 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4712 | lemma hyperplane_eq_UNIV: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4713 |    "{x. a \<bullet> x = b} = UNIV \<longleftrightarrow> a = 0 \<and> b = 0"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4714 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4715 |   have "UNIV \<subseteq> {x. a \<bullet> x = b} \<Longrightarrow> a = 0 \<and> b = 0"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4716 | apply (drule_tac c = "((b+1) / (a \<bullet> a)) *\<^sub>R a" in subsetD) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4717 | apply simp_all | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4718 | by (metis add_cancel_right_right zero_neq_one) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4719 | then show ?thesis by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4720 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4721 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4722 | lemma halfspace_eq_empty_lt: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4723 |    "{x. a \<bullet> x < b} = {} \<longleftrightarrow> a = 0 \<and> b \<le> 0"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4724 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4725 |   have "{x. a \<bullet> x < b} \<subseteq> {} \<Longrightarrow> a = 0 \<and> b \<le> 0"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4726 | apply (rule ccontr) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4727 | apply (drule_tac c = "((b-1) / (a \<bullet> a)) *\<^sub>R a" in subsetD) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4728 | apply force+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4729 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4730 | then show ?thesis by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4731 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4732 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4733 | lemma halfspace_eq_empty_gt: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4734 |    "{x. a \<bullet> x > b} = {} \<longleftrightarrow> a = 0 \<and> b \<ge> 0"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4735 | using halfspace_eq_empty_lt [of "-a" "-b"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4736 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4737 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4738 | lemma halfspace_eq_empty_le: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4739 |    "{x. a \<bullet> x \<le> b} = {} \<longleftrightarrow> a = 0 \<and> b < 0"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4740 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4741 |   have "{x. a \<bullet> x \<le> b} \<subseteq> {} \<Longrightarrow> a = 0 \<and> b < 0"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4742 | apply (rule ccontr) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4743 | apply (drule_tac c = "((b-1) / (a \<bullet> a)) *\<^sub>R a" in subsetD) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4744 | apply force+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4745 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4746 | then show ?thesis by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4747 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4748 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4749 | lemma halfspace_eq_empty_ge: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4750 |    "{x. a \<bullet> x \<ge> b} = {} \<longleftrightarrow> a = 0 \<and> b > 0"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4751 | using halfspace_eq_empty_le [of "-a" "-b"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4752 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4753 | |
| 70136 | 4754 | subsection\<^marker>\<open>tag unimportant\<close>\<open>Use set distance for an easy proof of separation properties\<close> | 
| 4755 | ||
| 4756 | proposition\<^marker>\<open>tag unimportant\<close> separation_closures: | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4757 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4758 |   assumes "S \<inter> closure T = {}" "T \<inter> closure S = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4759 |   obtains U V where "U \<inter> V = {}" "open U" "open V" "S \<subseteq> U" "T \<subseteq> V"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4760 | proof (cases "S = {} \<or> T = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4761 | case True with that show ?thesis by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4762 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4763 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4764 |   define f where "f \<equiv> \<lambda>x. setdist {x} T - setdist {x} S"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4765 | have contf: "continuous_on UNIV f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4766 | unfolding f_def by (intro continuous_intros continuous_on_setdist) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4767 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4768 |   proof (rule_tac U = "{x. f x > 0}" and V = "{x. f x < 0}" in that)
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4769 |     show "{x. 0 < f x} \<inter> {x. f x < 0} = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4770 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4771 |     show "open {x. 0 < f x}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4772 | by (simp add: open_Collect_less contf continuous_on_const) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4773 |     show "open {x. f x < 0}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4774 | by (simp add: open_Collect_less contf continuous_on_const) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4775 |     show "S \<subseteq> {x. 0 < f x}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4776 | apply (clarsimp simp add: f_def setdist_sing_in_set) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4777 | using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4778 | by (metis False IntI empty_iff le_less setdist_eq_0_sing_2 setdist_pos_le setdist_sym) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4779 |     show "T \<subseteq> {x. f x < 0}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4780 | apply (clarsimp simp add: f_def setdist_sing_in_set) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4781 | using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4782 | by (metis False IntI empty_iff le_less setdist_eq_0_sing_2 setdist_pos_le setdist_sym) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4783 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4784 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4785 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4786 | lemma separation_normal: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4787 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4788 |   assumes "closed S" "closed T" "S \<inter> T = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4789 |   obtains U V where "open U" "open V" "S \<subseteq> U" "T \<subseteq> V" "U \<inter> V = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4790 | using separation_closures [of S T] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4791 | by (metis assms closure_closed disjnt_def inf_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4792 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4793 | lemma separation_normal_local: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4794 | fixes S :: "'a::euclidean_space set" | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 4795 | assumes US: "closedin (top_of_set U) S" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 4796 | and UT: "closedin (top_of_set U) T" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4797 |       and "S \<inter> T = {}"
 | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 4798 | obtains S' T' where "openin (top_of_set U) S'" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 4799 | "openin (top_of_set U) T'" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4800 |                       "S \<subseteq> S'"  "T \<subseteq> T'"  "S' \<inter> T' = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4801 | proof (cases "S = {} \<or> T = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4802 | case True with that show ?thesis | 
| 68056 | 4803 | using UT US by (blast dest: closedin_subset) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4804 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4805 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4806 |   define f where "f \<equiv> \<lambda>x. setdist {x} T - setdist {x} S"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4807 | have contf: "continuous_on U f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4808 | unfolding f_def by (intro continuous_intros) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4809 | show ?thesis | 
| 66884 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 4810 |   proof (rule_tac S' = "(U \<inter> f -` {0<..})" and T' = "(U \<inter> f -` {..<0})" in that)
 | 
| 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 4811 |     show "(U \<inter> f -` {0<..}) \<inter> (U \<inter> f -` {..<0}) = {}"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4812 | by auto | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 4813 |     show "openin (top_of_set U) (U \<inter> f -` {0<..})"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4814 | by (rule continuous_openin_preimage [where T=UNIV]) (simp_all add: contf) | 
| 66884 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 4815 | next | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 4816 |     show "openin (top_of_set U) (U \<inter> f -` {..<0})"
 | 
| 66884 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 4817 | by (rule continuous_openin_preimage [where T=UNIV]) (simp_all add: contf) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4818 | next | 
| 66884 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 4819 | have "S \<subseteq> U" "T \<subseteq> U" | 
| 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 4820 | using closedin_imp_subset assms by blast+ | 
| 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 4821 |     then show "S \<subseteq> U \<inter> f -` {0<..}" "T \<subseteq> U \<inter> f -` {..<0}"
 | 
| 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 4822 | using assms False by (force simp add: f_def setdist_sing_in_set intro!: setdist_gt_0_closedin)+ | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4823 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4824 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4825 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4826 | lemma separation_normal_compact: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4827 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4828 |   assumes "compact S" "closed T" "S \<inter> T = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4829 |   obtains U V where "open U" "compact(closure U)" "open V" "S \<subseteq> U" "T \<subseteq> V" "U \<inter> V = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4830 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4831 | have "closed S" "bounded S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4832 | using assms by (auto simp: compact_eq_bounded_closed) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4833 | then obtain r where "r>0" and r: "S \<subseteq> ball 0 r" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4834 | by (auto dest!: bounded_subset_ballD) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4835 |   have **: "closed (T \<union> - ball 0 r)" "S \<inter> (T \<union> - ball 0 r) = {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4836 | using assms r by blast+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4837 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4838 | apply (rule separation_normal [OF \<open>closed S\<close>]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4839 | apply (rule_tac U=U and V=V in that) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4840 | by auto (meson bounded_ball bounded_subset compl_le_swap2 disjoint_eq_subset_Compl) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4841 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4842 | |
| 66793 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4843 | subsection\<open>Connectedness of the intersection of a chain\<close> | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4844 | |
| 68607 
67bb59e49834
make theorem, corollary, and proposition %important for HOL-Analysis manual
 immler parents: 
68527diff
changeset | 4845 | proposition connected_chain: | 
| 66793 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4846 | fixes \<F> :: "'a :: euclidean_space set set" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4847 | assumes cc: "\<And>S. S \<in> \<F> \<Longrightarrow> compact S \<and> connected S" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4848 | and linear: "\<And>S T. S \<in> \<F> \<and> T \<in> \<F> \<Longrightarrow> S \<subseteq> T \<or> T \<subseteq> S" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4849 | shows "connected(\<Inter>\<F>)" | 
| 68607 
67bb59e49834
make theorem, corollary, and proposition %important for HOL-Analysis manual
 immler parents: 
68527diff
changeset | 4850 | proof (cases "\<F> = {}")
 | 
| 66793 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4851 | case True then show ?thesis | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4852 | by auto | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4853 | next | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4854 | case False | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4855 | then have cf: "compact(\<Inter>\<F>)" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4856 | by (simp add: cc compact_Inter) | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4857 |   have False if AB: "closed A" "closed B" "A \<inter> B = {}"
 | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4858 |                 and ABeq: "A \<union> B = \<Inter>\<F>" and "A \<noteq> {}" "B \<noteq> {}" for A B
 | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4859 | proof - | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4860 |     obtain U V where "open U" "open V" "A \<subseteq> U" "B \<subseteq> V" "U \<inter> V = {}"
 | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4861 | using separation_normal [OF AB] by metis | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4862 | obtain K where "K \<in> \<F>" "compact K" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4863 | using cc False by blast | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4864 | then obtain N where "open N" and "K \<subseteq> N" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4865 | by blast | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4866 | let ?\<C> = "insert (U \<union> V) ((\<lambda>S. N - S) ` \<F>)" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4867 | obtain \<D> where "\<D> \<subseteq> ?\<C>" "finite \<D>" "K \<subseteq> \<Union>\<D>" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4868 | proof (rule compactE [OF \<open>compact K\<close>]) | 
| 69745 | 4869 | show "K \<subseteq> \<Union>(insert (U \<union> V) ((-) N ` \<F>))" | 
| 66793 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4870 | using \<open>K \<subseteq> N\<close> ABeq \<open>A \<subseteq> U\<close> \<open>B \<subseteq> V\<close> by auto | 
| 67399 | 4871 | show "\<And>B. B \<in> insert (U \<union> V) ((-) N ` \<F>) \<Longrightarrow> open B" | 
| 66793 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4872 | by (auto simp: \<open>open U\<close> \<open>open V\<close> open_Un \<open>open N\<close> cc compact_imp_closed open_Diff) | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4873 | qed | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4874 |     then have "finite(\<D> - {U \<union> V})"
 | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4875 | by blast | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4876 |     moreover have "\<D> - {U \<union> V} \<subseteq> (\<lambda>S. N - S) ` \<F>"
 | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4877 | using \<open>\<D> \<subseteq> ?\<C>\<close> by blast | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4878 |     ultimately obtain \<G> where "\<G> \<subseteq> \<F>" "finite \<G>" and Deq: "\<D> - {U \<union> V} = (\<lambda>S. N-S) ` \<G>"
 | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4879 | using finite_subset_image by metis | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4880 | obtain J where "J \<in> \<F>" and J: "(\<Union>S\<in>\<G>. N - S) \<subseteq> N - J" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4881 |     proof (cases "\<G> = {}")
 | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4882 | case True | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4883 |       with \<open>\<F> \<noteq> {}\<close> that show ?thesis
 | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4884 | by auto | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4885 | next | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4886 | case False | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4887 | have "\<And>S T. \<lbrakk>S \<in> \<G>; T \<in> \<G>\<rbrakk> \<Longrightarrow> S \<subseteq> T \<or> T \<subseteq> S" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4888 | by (meson \<open>\<G> \<subseteq> \<F>\<close> in_mono local.linear) | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4889 |       with \<open>finite \<G>\<close> \<open>\<G> \<noteq> {}\<close>
 | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4890 | have "\<exists>J \<in> \<G>. (\<Union>S\<in>\<G>. N - S) \<subseteq> N - J" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4891 | proof induction | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4892 | case (insert X \<H>) | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4893 | show ?case | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4894 |         proof (cases "\<H> = {}")
 | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4895 | case True then show ?thesis by auto | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4896 | next | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4897 | case False | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4898 | then have "\<And>S T. \<lbrakk>S \<in> \<H>; T \<in> \<H>\<rbrakk> \<Longrightarrow> S \<subseteq> T \<or> T \<subseteq> S" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4899 | by (simp add: insert.prems) | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4900 | with insert.IH False obtain J where "J \<in> \<H>" and J: "(\<Union>Y\<in>\<H>. N - Y) \<subseteq> N - J" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4901 | by metis | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4902 | have "N - J \<subseteq> N - X \<or> N - X \<subseteq> N - J" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4903 | by (meson Diff_mono \<open>J \<in> \<H>\<close> insert.prems(2) insert_iff order_refl) | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4904 | then show ?thesis | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4905 | proof | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4906 | assume "N - J \<subseteq> N - X" with J show ?thesis | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4907 | by auto | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4908 | next | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4909 | assume "N - X \<subseteq> N - J" | 
| 69325 | 4910 | with J have "N - X \<union> \<Union> ((-) N ` \<H>) \<subseteq> N - J" | 
| 66793 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4911 | by auto | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4912 | with \<open>J \<in> \<H>\<close> show ?thesis | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4913 | by blast | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4914 | qed | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4915 | qed | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4916 | qed simp | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4917 | with \<open>\<G> \<subseteq> \<F>\<close> show ?thesis by (blast intro: that) | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4918 | qed | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4919 |     have "K \<subseteq> \<Union>(insert (U \<union> V) (\<D> - {U \<union> V}))"
 | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4920 | using \<open>K \<subseteq> \<Union>\<D>\<close> by auto | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4921 | also have "... \<subseteq> (U \<union> V) \<union> (N - J)" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4922 | by (metis (no_types, hide_lams) Deq Un_subset_iff Un_upper2 J Union_insert order_trans sup_ge1) | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4923 | finally have "J \<inter> K \<subseteq> U \<union> V" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4924 | by blast | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4925 | moreover have "connected(J \<inter> K)" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4926 | by (metis Int_absorb1 \<open>J \<in> \<F>\<close> \<open>K \<in> \<F>\<close> cc inf.orderE local.linear) | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4927 |     moreover have "U \<inter> (J \<inter> K) \<noteq> {}"
 | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4928 |       using ABeq \<open>J \<in> \<F>\<close> \<open>K \<in> \<F>\<close> \<open>A \<noteq> {}\<close> \<open>A \<subseteq> U\<close> by blast
 | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4929 |     moreover have "V \<inter> (J \<inter> K) \<noteq> {}"
 | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4930 |       using ABeq \<open>J \<in> \<F>\<close> \<open>K \<in> \<F>\<close> \<open>B \<noteq> {}\<close> \<open>B \<subseteq> V\<close> by blast
 | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4931 | ultimately show False | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4932 |         using connectedD [of "J \<inter> K" U V] \<open>open U\<close> \<open>open V\<close> \<open>U \<inter> V = {}\<close>  by auto
 | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4933 | qed | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4934 | with cf show ?thesis | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4935 | by (auto simp: connected_closed_set compact_imp_closed) | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4936 | qed | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4937 | |
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4938 | lemma connected_chain_gen: | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4939 | fixes \<F> :: "'a :: euclidean_space set set" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4940 | assumes X: "X \<in> \<F>" "compact X" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4941 | and cc: "\<And>T. T \<in> \<F> \<Longrightarrow> closed T \<and> connected T" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4942 | and linear: "\<And>S T. S \<in> \<F> \<and> T \<in> \<F> \<Longrightarrow> S \<subseteq> T \<or> T \<subseteq> S" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4943 | shows "connected(\<Inter>\<F>)" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4944 | proof - | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4945 | have "\<Inter>\<F> = (\<Inter>T\<in>\<F>. X \<inter> T)" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4946 | using X by blast | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4947 | moreover have "connected (\<Inter>T\<in>\<F>. X \<inter> T)" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4948 | proof (rule connected_chain) | 
| 67399 | 4949 | show "\<And>T. T \<in> (\<inter>) X ` \<F> \<Longrightarrow> compact T \<and> connected T" | 
| 66793 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4950 | using cc X by auto (metis inf.absorb2 inf.orderE local.linear) | 
| 67399 | 4951 | show "\<And>S T. S \<in> (\<inter>) X ` \<F> \<and> T \<in> (\<inter>) X ` \<F> \<Longrightarrow> S \<subseteq> T \<or> T \<subseteq> S" | 
| 66793 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4952 | using local.linear by blast | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4953 | qed | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4954 | ultimately show ?thesis | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4955 | by metis | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4956 | qed | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4957 | |
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4958 | lemma connected_nest: | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4959 | fixes S :: "'a::linorder \<Rightarrow> 'b::euclidean_space set" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4960 | assumes S: "\<And>n. compact(S n)" "\<And>n. connected(S n)" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4961 | and nest: "\<And>m n. m \<le> n \<Longrightarrow> S n \<subseteq> S m" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4962 | shows "connected(\<Inter> (range S))" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4963 | apply (rule connected_chain) | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4964 | using S apply blast | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4965 | by (metis image_iff le_cases nest) | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4966 | |
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4967 | lemma connected_nest_gen: | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4968 | fixes S :: "'a::linorder \<Rightarrow> 'b::euclidean_space set" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4969 | assumes S: "\<And>n. closed(S n)" "\<And>n. connected(S n)" "compact(S k)" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4970 | and nest: "\<And>m n. m \<le> n \<Longrightarrow> S n \<subseteq> S m" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4971 | shows "connected(\<Inter> (range S))" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4972 | apply (rule connected_chain_gen [of "S k"]) | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4973 | using S apply auto | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4974 | by (meson le_cases nest subsetCE) | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
66765diff
changeset | 4975 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4976 | subsection\<open>Proper maps, including projections out of compact sets\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4977 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4978 | lemma finite_indexed_bound: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4979 | assumes A: "finite A" "\<And>x. x \<in> A \<Longrightarrow> \<exists>n::'a::linorder. P x n" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4980 | shows "\<exists>m. \<forall>x \<in> A. \<exists>k\<le>m. P x k" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4981 | using A | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4982 | proof (induction A) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4983 | case empty then show ?case by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4984 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4985 | case (insert a A) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4986 | then obtain m n where "\<forall>x \<in> A. \<exists>k\<le>m. P x k" "P a n" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4987 | by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4988 | then show ?case | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4989 | apply (rule_tac x="max m n" in exI, safe) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4990 | using max.cobounded2 apply blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4991 | by (meson le_max_iff_disj) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4992 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4993 | |
| 68607 
67bb59e49834
make theorem, corollary, and proposition %important for HOL-Analysis manual
 immler parents: 
68527diff
changeset | 4994 | proposition proper_map: | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4995 | fixes f :: "'a::heine_borel \<Rightarrow> 'b::heine_borel" | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 4996 | assumes "closedin (top_of_set S) K" | 
| 66884 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 4997 | and com: "\<And>U. \<lbrakk>U \<subseteq> T; compact U\<rbrakk> \<Longrightarrow> compact (S \<inter> f -` U)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 4998 | and "f ` S \<subseteq> T" | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 4999 | shows "closedin (top_of_set T) (f ` K)" | 
| 68607 
67bb59e49834
make theorem, corollary, and proposition %important for HOL-Analysis manual
 immler parents: 
68527diff
changeset | 5000 | proof - | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5001 | have "K \<subseteq> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5002 | using assms closedin_imp_subset by metis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5003 | obtain C where "closed C" and Keq: "K = S \<inter> C" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5004 | using assms by (auto simp: closedin_closed) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5005 | have *: "y \<in> f ` K" if "y \<in> T" and y: "y islimpt f ` K" for y | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5006 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5007 | obtain h where "\<forall>n. (\<exists>x\<in>K. h n = f x) \<and> h n \<noteq> y" "inj h" and hlim: "(h \<longlongrightarrow> y) sequentially" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5008 | using \<open>y \<in> T\<close> y by (force simp: limpt_sequential_inj) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5009 | then obtain X where X: "\<And>n. X n \<in> K \<and> h n = f (X n) \<and> h n \<noteq> y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5010 | by metis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5011 | then have fX: "\<And>n. f (X n) = h n" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5012 | by metis | 
| 66884 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 5013 | have "compact (C \<inter> (S \<inter> f -` insert y (range (\<lambda>i. f(X(n + i))))))" for n | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5014 | apply (rule closed_Int_compact [OF \<open>closed C\<close>]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5015 | apply (rule com) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5016 | using X \<open>K \<subseteq> S\<close> \<open>f ` S \<subseteq> T\<close> \<open>y \<in> T\<close> apply blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5017 | apply (rule compact_sequence_with_limit) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5018 | apply (simp add: fX add.commute [of n] LIMSEQ_ignore_initial_segment [OF hlim]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5019 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5020 |     then have comf: "compact {a \<in> K. f a \<in> insert y (range (\<lambda>i. f(X(n + i))))}" for n
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5021 | by (simp add: Keq Int_def conj_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5022 |     have ne: "\<Inter>\<F> \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5023 | if "finite \<F>" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5024 | and \<F>: "\<And>t. t \<in> \<F> \<Longrightarrow> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5025 |                            (\<exists>n. t = {a \<in> K. f a \<in> insert y (range (\<lambda>i. f (X (n + i))))})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5026 | for \<F> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5027 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5028 |       obtain m where m: "\<And>t. t \<in> \<F> \<Longrightarrow> \<exists>k\<le>m. t = {a \<in> K. f a \<in> insert y (range (\<lambda>i. f (X (k + i))))}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5029 | apply (rule exE) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5030 | apply (rule finite_indexed_bound [OF \<open>finite \<F>\<close> \<F>], assumption, force) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5031 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5032 | have "X m \<in> \<Inter>\<F>" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5033 | using X le_Suc_ex by (fastforce dest: m) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5034 | then show ?thesis by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5035 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5036 |     have "\<Inter>{{a. a \<in> K \<and> f a \<in> insert y (range (\<lambda>i. f(X(n + i))))} |n. n \<in> UNIV}
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5037 |                \<noteq> {}"
 | 
| 69529 | 5038 | apply (rule compact_fip_Heine_Borel) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5039 | using comf apply force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5040 | using ne apply (simp add: subset_iff del: insert_iff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5041 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5042 |     then have "\<exists>x. x \<in> (\<Inter>n. {a \<in> K. f a \<in> insert y (range (\<lambda>i. f (X (n + i))))})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5043 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5044 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5045 | apply (simp add: image_iff fX) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5046 | by (metis \<open>inj h\<close> le_add1 not_less_eq_eq rangeI range_ex1_eq) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5047 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5048 | with assms closedin_subset show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5049 | by (force simp: closedin_limpt) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5050 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5051 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5052 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5053 | lemma compact_continuous_image_eq: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5054 | fixes f :: "'a::heine_borel \<Rightarrow> 'b::heine_borel" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5055 | assumes f: "inj_on f S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5056 | shows "continuous_on S f \<longleftrightarrow> (\<forall>T. compact T \<and> T \<subseteq> S \<longrightarrow> compact(f ` T))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5057 | (is "?lhs = ?rhs") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5058 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5059 | assume ?lhs then show ?rhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5060 | by (metis continuous_on_subset compact_continuous_image) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5061 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5062 | assume RHS: ?rhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5063 | obtain g where gf: "\<And>x. x \<in> S \<Longrightarrow> g (f x) = x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5064 | by (metis inv_into_f_f f) | 
| 66884 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 5065 | then have *: "(S \<inter> f -` U) = g ` U" if "U \<subseteq> f ` S" for U | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5066 | using that by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5067 | have gfim: "g ` f ` S \<subseteq> S" using gf by auto | 
| 66884 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 5068 | have **: "compact (f ` S \<inter> g -` C)" if C: "C \<subseteq> S" "compact C" for C | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5069 | proof - | 
| 66884 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 5070 | obtain h where "h C \<in> C \<and> h C \<notin> S \<or> compact (f ` C)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5071 | by (force simp: C RHS) | 
| 66884 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 5072 | moreover have "f ` C = (f ` S \<inter> g -` C)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5073 | using C gf by auto | 
| 66884 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 5074 | ultimately show ?thesis | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5075 | using C by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5076 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5077 | show ?lhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5078 | using proper_map [OF _ _ gfim] ** | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5079 | by (simp add: continuous_on_closed * closedin_imp_subset) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5080 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5081 | |
| 70136 | 5082 | subsection\<^marker>\<open>tag unimportant\<close>\<open>Trivial fact: convexity equals connectedness for collinear sets\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5083 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5084 | lemma convex_connected_collinear: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5085 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5086 | assumes "collinear S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5087 | shows "convex S \<longleftrightarrow> connected S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5088 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5089 | assume "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5090 | then show "connected S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5091 | using convex_connected by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5092 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5093 | assume S: "connected S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5094 | show "convex S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5095 |   proof (cases "S = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5096 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5097 | then show ?thesis by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5098 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5099 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5100 | then obtain a where "a \<in> S" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5101 | have "collinear (affine hull S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5102 | by (simp add: assms collinear_affine_hull_collinear) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5103 | then obtain z where "z \<noteq> 0" "\<And>x. x \<in> affine hull S \<Longrightarrow> \<exists>c. x - a = c *\<^sub>R z" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5104 | by (meson \<open>a \<in> S\<close> collinear hull_inc) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5105 | then obtain f where f: "\<And>x. x \<in> affine hull S \<Longrightarrow> x - a = f x *\<^sub>R z" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5106 | by metis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5107 | then have inj_f: "inj_on f (affine hull S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5108 | by (metis diff_add_cancel inj_onI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5109 | have diff: "x - y = (f x - f y) *\<^sub>R z" if x: "x \<in> affine hull S" and y: "y \<in> affine hull S" for x y | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5110 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5111 | have "f x *\<^sub>R z = x - a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5112 | by (simp add: f hull_inc x) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5113 | moreover have "f y *\<^sub>R z = y - a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5114 | by (simp add: f hull_inc y) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5115 | ultimately show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5116 | by (simp add: scaleR_left.diff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5117 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5118 | have cont_f: "continuous_on (affine hull S) f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5119 | apply (clarsimp simp: dist_norm continuous_on_iff diff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5120 | by (metis \<open>z \<noteq> 0\<close> mult.commute mult_less_cancel_left_pos norm_minus_commute real_norm_def zero_less_mult_iff zero_less_norm_iff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5121 | then have conn_fS: "connected (f ` S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5122 | by (meson S connected_continuous_image continuous_on_subset hull_subset) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5123 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5124 | proof (clarsimp simp: convex_contains_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5125 | fix x y z | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5126 | assume "x \<in> S" "y \<in> S" "z \<in> closed_segment x y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5127 | have False if "z \<notin> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5128 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5129 | have "f ` (closed_segment x y) = closed_segment (f x) (f y)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5130 | apply (rule continuous_injective_image_segment_1) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5131 | apply (meson \<open>x \<in> S\<close> \<open>y \<in> S\<close> convex_affine_hull convex_contains_segment hull_inc continuous_on_subset [OF cont_f]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5132 | by (meson \<open>x \<in> S\<close> \<open>y \<in> S\<close> convex_affine_hull convex_contains_segment hull_inc inj_on_subset [OF inj_f]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5133 | then have fz: "f z \<in> closed_segment (f x) (f y)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5134 | using \<open>z \<in> closed_segment x y\<close> by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5135 | have "z \<in> affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5136 | by (meson \<open>x \<in> S\<close> \<open>y \<in> S\<close> \<open>z \<in> closed_segment x y\<close> convex_affine_hull convex_contains_segment hull_inc subset_eq) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5137 | then have fz_notin: "f z \<notin> f ` S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5138 | using hull_subset inj_f inj_onD that by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5139 |         moreover have "{..<f z} \<inter> f ` S \<noteq> {}" "{f z<..} \<inter> f ` S \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5140 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5141 |           have "{..<f z} \<inter> f ` {x,y} \<noteq> {}"  "{f z<..} \<inter> f ` {x,y} \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5142 | using fz fz_notin \<open>x \<in> S\<close> \<open>y \<in> S\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5143 | apply (auto simp: closed_segment_eq_real_ivl split: if_split_asm) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5144 | apply (metis image_eqI less_eq_real_def)+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5145 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5146 |           then show "{..<f z} \<inter> f ` S \<noteq> {}" "{f z<..} \<inter> f ` S \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5147 | using \<open>x \<in> S\<close> \<open>y \<in> S\<close> by blast+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5148 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5149 | ultimately show False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5150 |           using connectedD [OF conn_fS, of "{..<f z}" "{f z<..}"] by force
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5151 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5152 | then show "z \<in> S" by meson | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5153 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5154 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5155 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5156 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5157 | lemma compact_convex_collinear_segment_alt: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5158 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5159 |   assumes "S \<noteq> {}" "compact S" "connected S" "collinear S"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5160 | obtains a b where "S = closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5161 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5162 |   obtain \<xi> where "\<xi> \<in> S" using \<open>S \<noteq> {}\<close> by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5163 | have "collinear (affine hull S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5164 | by (simp add: assms collinear_affine_hull_collinear) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5165 | then obtain z where "z \<noteq> 0" "\<And>x. x \<in> affine hull S \<Longrightarrow> \<exists>c. x - \<xi> = c *\<^sub>R z" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5166 | by (meson \<open>\<xi> \<in> S\<close> collinear hull_inc) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5167 | then obtain f where f: "\<And>x. x \<in> affine hull S \<Longrightarrow> x - \<xi> = f x *\<^sub>R z" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5168 | by metis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5169 | let ?g = "\<lambda>r. r *\<^sub>R z + \<xi>" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5170 | have gf: "?g (f x) = x" if "x \<in> affine hull S" for x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5171 | by (metis diff_add_cancel f that) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5172 | then have inj_f: "inj_on f (affine hull S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5173 | by (metis inj_onI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5174 | have diff: "x - y = (f x - f y) *\<^sub>R z" if x: "x \<in> affine hull S" and y: "y \<in> affine hull S" for x y | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5175 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5176 | have "f x *\<^sub>R z = x - \<xi>" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5177 | by (simp add: f hull_inc x) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5178 | moreover have "f y *\<^sub>R z = y - \<xi>" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5179 | by (simp add: f hull_inc y) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5180 | ultimately show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5181 | by (simp add: scaleR_left.diff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5182 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5183 | have cont_f: "continuous_on (affine hull S) f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5184 | apply (clarsimp simp: dist_norm continuous_on_iff diff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5185 | by (metis \<open>z \<noteq> 0\<close> mult.commute mult_less_cancel_left_pos norm_minus_commute real_norm_def zero_less_mult_iff zero_less_norm_iff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5186 | then have "connected (f ` S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5187 | by (meson \<open>connected S\<close> connected_continuous_image continuous_on_subset hull_subset) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5188 | moreover have "compact (f ` S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5189 | by (meson \<open>compact S\<close> compact_continuous_image_eq cont_f hull_subset inj_f) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5190 |   ultimately obtain x y where "f ` S = {x..y}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5191 | by (meson connected_compact_interval_1) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5192 | then have fS_eq: "f ` S = closed_segment x y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5193 |     using \<open>S \<noteq> {}\<close> closed_segment_eq_real_ivl by auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5194 | obtain a b where "a \<in> S" "f a = x" "b \<in> S" "f b = y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5195 | by (metis (full_types) ends_in_segment fS_eq imageE) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5196 | have "f ` (closed_segment a b) = closed_segment (f a) (f b)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5197 | apply (rule continuous_injective_image_segment_1) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5198 | apply (meson \<open>a \<in> S\<close> \<open>b \<in> S\<close> convex_affine_hull convex_contains_segment hull_inc continuous_on_subset [OF cont_f]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5199 | by (meson \<open>a \<in> S\<close> \<open>b \<in> S\<close> convex_affine_hull convex_contains_segment hull_inc inj_on_subset [OF inj_f]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5200 | then have "f ` (closed_segment a b) = f ` S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5201 | by (simp add: \<open>f a = x\<close> \<open>f b = y\<close> fS_eq) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5202 | then have "?g ` f ` (closed_segment a b) = ?g ` f ` S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5203 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5204 | moreover have "(\<lambda>x. f x *\<^sub>R z + \<xi>) ` closed_segment a b = closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5205 | apply safe | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5206 | apply (metis (mono_tags, hide_lams) \<open>a \<in> S\<close> \<open>b \<in> S\<close> convex_affine_hull convex_contains_segment gf hull_inc subsetCE) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5207 | by (metis (mono_tags, lifting) \<open>a \<in> S\<close> \<open>b \<in> S\<close> convex_affine_hull convex_contains_segment gf hull_subset image_iff subsetCE) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5208 | ultimately have "closed_segment a b = S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5209 | using gf by (simp add: image_comp o_def hull_inc cong: image_cong) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5210 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5211 | using that by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5212 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5213 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5214 | lemma compact_convex_collinear_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5215 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5216 |   assumes "S \<noteq> {}" "compact S" "convex S" "collinear S"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5217 | obtains a b where "S = closed_segment a b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5218 | using assms convex_connected_collinear compact_convex_collinear_segment_alt by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5219 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5220 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5221 | lemma proper_map_from_compact: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5222 | fixes f :: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5223 | assumes contf: "continuous_on S f" and imf: "f ` S \<subseteq> T" and "compact S" | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 5224 | "closedin (top_of_set T) K" | 
| 66884 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 5225 | shows "compact (S \<inter> f -` K)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5226 | by (rule closedin_compact [OF \<open>compact S\<close>] continuous_closedin_preimage_gen assms)+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5227 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5228 | lemma proper_map_fst: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5229 | assumes "compact T" "K \<subseteq> S" "compact K" | 
| 66884 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 5230 | shows "compact (S \<times> T \<inter> fst -` K)" | 
| 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 5231 | proof - | 
| 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 5232 | have "(S \<times> T \<inter> fst -` K) = K \<times> T" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5233 | using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5234 | then show ?thesis by (simp add: assms compact_Times) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5235 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5236 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5237 | lemma closed_map_fst: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5238 | fixes S :: "'a::euclidean_space set" and T :: "'b::euclidean_space set" | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 5239 | assumes "compact T" "closedin (top_of_set (S \<times> T)) c" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 5240 | shows "closedin (top_of_set S) (fst ` c)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5241 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5242 | have *: "fst ` (S \<times> T) \<subseteq> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5243 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5244 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5245 | using proper_map [OF _ _ *] by (simp add: proper_map_fst assms) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5246 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5247 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5248 | lemma proper_map_snd: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5249 | assumes "compact S" "K \<subseteq> T" "compact K" | 
| 66884 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 5250 | shows "compact (S \<times> T \<inter> snd -` K)" | 
| 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 5251 | proof - | 
| 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 5252 | have "(S \<times> T \<inter> snd -` K) = S \<times> K" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5253 | using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5254 | then show ?thesis by (simp add: assms compact_Times) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5255 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5256 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5257 | lemma closed_map_snd: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5258 | fixes S :: "'a::euclidean_space set" and T :: "'b::euclidean_space set" | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 5259 | assumes "compact S" "closedin (top_of_set (S \<times> T)) c" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 5260 | shows "closedin (top_of_set T) (snd ` c)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5261 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5262 | have *: "snd ` (S \<times> T) \<subseteq> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5263 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5264 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5265 | using proper_map [OF _ _ *] by (simp add: proper_map_snd assms) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5266 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5267 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5268 | lemma closedin_compact_projection: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5269 | fixes S :: "'a::euclidean_space set" and T :: "'b::euclidean_space set" | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 5270 | assumes "compact S" and clo: "closedin (top_of_set (S \<times> T)) U" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 5271 |     shows "closedin (top_of_set T) {y. \<exists>x. x \<in> S \<and> (x, y) \<in> U}"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5272 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5273 | have "U \<subseteq> S \<times> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5274 | by (metis clo closedin_imp_subset) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5275 |   then have "{y. \<exists>x. x \<in> S \<and> (x, y) \<in> U} = snd ` U"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5276 | by force | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 5277 | moreover have "closedin (top_of_set T) (snd ` U)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5278 | by (rule closed_map_snd [OF assms]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5279 | ultimately show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5280 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5281 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5282 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5283 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5284 | lemma closed_compact_projection: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5285 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5286 |     and T :: "('a * 'b::euclidean_space) set"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5287 | assumes "compact S" and clo: "closed T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5288 |     shows "closed {y. \<exists>x. x \<in> S \<and> (x, y) \<in> T}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5289 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5290 |   have *: "{y. \<exists>x. x \<in> S \<and> Pair x y \<in> T} =
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5291 |         {y. \<exists>x. x \<in> S \<and> Pair x y \<in> ((S \<times> UNIV) \<inter> T)}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5292 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5293 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5294 | apply (subst *) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5295 | apply (rule closedin_closed_trans [OF _ closed_UNIV]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5296 | apply (rule closedin_compact_projection [OF \<open>compact S\<close>]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5297 | by (simp add: clo closedin_closed_Int) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5298 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5299 | |
| 70136 | 5300 | subsubsection\<^marker>\<open>tag unimportant\<close>\<open>Representing affine hull as a finite intersection of hyperplanes\<close> | 
| 5301 | ||
| 5302 | proposition\<^marker>\<open>tag unimportant\<close> affine_hull_convex_Int_nonempty_interior: | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5303 | fixes S :: "'a::real_normed_vector set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5304 |   assumes "convex S" "S \<inter> interior T \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5305 | shows "affine hull (S \<inter> T) = affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5306 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5307 | show "affine hull (S \<inter> T) \<subseteq> affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5308 | by (simp add: hull_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5309 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5310 | obtain a where "a \<in> S" "a \<in> T" and at: "a \<in> interior T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5311 | using assms interior_subset by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5312 | then obtain e where "e > 0" and e: "cball a e \<subseteq> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5313 | using mem_interior_cball by blast | 
| 67399 | 5314 | have *: "x \<in> (+) a ` span ((\<lambda>x. x - a) ` (S \<inter> T))" if "x \<in> S" for x | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5315 | proof (cases "x = a") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5316 | case True with that span_0 eq_add_iff image_def mem_Collect_eq show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5317 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5318 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5319 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5320 | define k where "k = min (1/2) (e / norm (x-a))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5321 | have k: "0 < k" "k < 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5322 | using \<open>e > 0\<close> False by (auto simp: k_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5323 | then have xa: "(x-a) = inverse k *\<^sub>R k *\<^sub>R (x-a)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5324 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5325 | have "e / norm (x - a) \<ge> k" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5326 | using k_def by linarith | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5327 | then have "a + k *\<^sub>R (x - a) \<in> cball a e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5328 | using \<open>0 < k\<close> False by (simp add: dist_norm field_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5329 | then have T: "a + k *\<^sub>R (x - a) \<in> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5330 | using e by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5331 | have S: "a + k *\<^sub>R (x - a) \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5332 | using k \<open>a \<in> S\<close> convexD [OF \<open>convex S\<close> \<open>a \<in> S\<close> \<open>x \<in> S\<close>, of "1-k" k] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5333 | by (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5334 | have "inverse k *\<^sub>R k *\<^sub>R (x-a) \<in> span ((\<lambda>x. x - a) ` (S \<inter> T))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5335 | apply (rule span_mul) | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 5336 | apply (rule span_base) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5337 | apply (rule image_eqI [where x = "a + k *\<^sub>R (x - a)"]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5338 | apply (auto simp: S T) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5339 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5340 | with xa image_iff show ?thesis by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5341 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5342 | show "affine hull S \<subseteq> affine hull (S \<inter> T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5343 | apply (simp add: subset_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5344 | apply (simp add: \<open>a \<in> S\<close> \<open>a \<in> T\<close> hull_inc affine_hull_span_gen [of a]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5345 | apply (force simp: *) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5346 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5347 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5348 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5349 | corollary affine_hull_convex_Int_open: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5350 | fixes S :: "'a::real_normed_vector set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5351 |   assumes "convex S" "open T" "S \<inter> T \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5352 | shows "affine hull (S \<inter> T) = affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5353 | using affine_hull_convex_Int_nonempty_interior assms interior_eq by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5354 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5355 | corollary affine_hull_affine_Int_nonempty_interior: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5356 | fixes S :: "'a::real_normed_vector set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5357 |   assumes "affine S" "S \<inter> interior T \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5358 | shows "affine hull (S \<inter> T) = affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5359 | by (simp add: affine_hull_convex_Int_nonempty_interior affine_imp_convex assms) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5360 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5361 | corollary affine_hull_affine_Int_open: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5362 | fixes S :: "'a::real_normed_vector set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5363 |   assumes "affine S" "open T" "S \<inter> T \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5364 | shows "affine hull (S \<inter> T) = affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5365 | by (simp add: affine_hull_convex_Int_open affine_imp_convex assms) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5366 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5367 | corollary affine_hull_convex_Int_openin: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5368 | fixes S :: "'a::real_normed_vector set" | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 5369 |   assumes "convex S" "openin (top_of_set (affine hull S)) T" "S \<inter> T \<noteq> {}"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5370 | shows "affine hull (S \<inter> T) = affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5371 | using assms unfolding openin_open | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5372 | by (metis affine_hull_convex_Int_open hull_subset inf.orderE inf_assoc) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5373 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5374 | corollary affine_hull_openin: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5375 | fixes S :: "'a::real_normed_vector set" | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 5376 |   assumes "openin (top_of_set (affine hull T)) S" "S \<noteq> {}"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5377 | shows "affine hull S = affine hull T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5378 | using assms unfolding openin_open | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5379 | by (metis affine_affine_hull affine_hull_affine_Int_open hull_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5380 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5381 | corollary affine_hull_open: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5382 | fixes S :: "'a::real_normed_vector set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5383 |   assumes "open S" "S \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5384 | shows "affine hull S = UNIV" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5385 | by (metis affine_hull_convex_Int_nonempty_interior assms convex_UNIV hull_UNIV inf_top.left_neutral interior_open) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5386 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5387 | lemma aff_dim_convex_Int_nonempty_interior: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5388 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5389 |   shows "\<lbrakk>convex S; S \<inter> interior T \<noteq> {}\<rbrakk> \<Longrightarrow> aff_dim(S \<inter> T) = aff_dim S"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5390 | using aff_dim_affine_hull2 affine_hull_convex_Int_nonempty_interior by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5391 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5392 | lemma aff_dim_convex_Int_open: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5393 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5394 |   shows "\<lbrakk>convex S; open T; S \<inter> T \<noteq> {}\<rbrakk> \<Longrightarrow>  aff_dim(S \<inter> T) = aff_dim S"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5395 | using aff_dim_convex_Int_nonempty_interior interior_eq by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5396 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5397 | lemma affine_hull_Diff: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5398 | fixes S:: "'a::real_normed_vector set" | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 5399 | assumes ope: "openin (top_of_set (affine hull S)) S" and "finite F" "F \<subset> S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5400 | shows "affine hull (S - F) = affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5401 | proof - | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 5402 | have clo: "closedin (top_of_set S) F" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5403 | using assms finite_imp_closedin by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5404 |   moreover have "S - F \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5405 | using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5406 | ultimately show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5407 | by (metis ope closedin_def topspace_euclidean_subtopology affine_hull_openin openin_trans) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5408 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5409 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5410 | lemma affine_hull_halfspace_lt: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5411 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5412 |   shows "affine hull {x. a \<bullet> x < r} = (if a = 0 \<and> r \<le> 0 then {} else UNIV)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5413 | using halfspace_eq_empty_lt [of a r] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5414 | by (simp add: open_halfspace_lt affine_hull_open) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5415 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5416 | lemma affine_hull_halfspace_le: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5417 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5418 |   shows "affine hull {x. a \<bullet> x \<le> r} = (if a = 0 \<and> r < 0 then {} else UNIV)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5419 | proof (cases "a = 0") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5420 | case True then show ?thesis by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5421 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5422 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5423 |   then have "affine hull closure {x. a \<bullet> x < r} = UNIV"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5424 | using affine_hull_halfspace_lt closure_same_affine_hull by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5425 |   moreover have "{x. a \<bullet> x < r} \<subseteq> {x. a \<bullet> x \<le> r}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5426 | by (simp add: Collect_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5427 | ultimately show ?thesis using False antisym_conv hull_mono top_greatest | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5428 | by (metis affine_hull_halfspace_lt) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5429 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5430 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5431 | lemma affine_hull_halfspace_gt: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5432 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5433 |   shows "affine hull {x. a \<bullet> x > r} = (if a = 0 \<and> r \<ge> 0 then {} else UNIV)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5434 | using halfspace_eq_empty_gt [of r a] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5435 | by (simp add: open_halfspace_gt affine_hull_open) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5436 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5437 | lemma affine_hull_halfspace_ge: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5438 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5439 |   shows "affine hull {x. a \<bullet> x \<ge> r} = (if a = 0 \<and> r > 0 then {} else UNIV)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5440 | using affine_hull_halfspace_le [of "-a" "-r"] by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5441 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5442 | lemma aff_dim_halfspace_lt: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5443 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5444 |   shows "aff_dim {x. a \<bullet> x < r} =
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5445 |         (if a = 0 \<and> r \<le> 0 then -1 else DIM('a))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5446 | by simp (metis aff_dim_open halfspace_eq_empty_lt open_halfspace_lt) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5447 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5448 | lemma aff_dim_halfspace_le: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5449 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5450 |   shows "aff_dim {x. a \<bullet> x \<le> r} =
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5451 |         (if a = 0 \<and> r < 0 then -1 else DIM('a))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5452 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5453 |   have "int (DIM('a)) = aff_dim (UNIV::'a set)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5454 | by (simp add: aff_dim_UNIV) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5455 |   then have "aff_dim (affine hull {x. a \<bullet> x \<le> r}) = DIM('a)" if "(a = 0 \<longrightarrow> r \<ge> 0)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5456 | using that by (simp add: affine_hull_halfspace_le not_less) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5457 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5458 | by (force simp: aff_dim_affine_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5459 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5460 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5461 | lemma aff_dim_halfspace_gt: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5462 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5463 |   shows "aff_dim {x. a \<bullet> x > r} =
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5464 |         (if a = 0 \<and> r \<ge> 0 then -1 else DIM('a))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5465 | by simp (metis aff_dim_open halfspace_eq_empty_gt open_halfspace_gt) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5466 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5467 | lemma aff_dim_halfspace_ge: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5468 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5469 |   shows "aff_dim {x. a \<bullet> x \<ge> r} =
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5470 |         (if a = 0 \<and> r > 0 then -1 else DIM('a))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5471 | using aff_dim_halfspace_le [of "-a" "-r"] by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5472 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5473 | proposition aff_dim_eq_hyperplane: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5474 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5475 |   shows "aff_dim S = DIM('a) - 1 \<longleftrightarrow> (\<exists>a b. a \<noteq> 0 \<and> affine hull S = {x. a \<bullet> x = b})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5476 | proof (cases "S = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5477 | case True then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5478 | by (auto simp: dest: hyperplane_eq_Ex) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5479 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5480 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5481 | then obtain c where "c \<in> S" by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5482 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5483 | proof (cases "c = 0") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5484 | case True show ?thesis | 
| 69661 | 5485 | using span_zero [of S] | 
| 5486 | apply (simp add: aff_dim_eq_dim [of c] affine_hull_span_gen [of c] \<open>c \<in> S\<close> hull_inc dim_eq_hyperplane | |
| 5487 | del: One_nat_def) | |
| 5488 | apply (auto simp add: \<open>c = 0\<close>) | |
| 5489 | done | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5490 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5491 | case False | 
| 67399 | 5492 |     have xc_im: "x \<in> (+) c ` {y. a \<bullet> y = 0}" if "a \<bullet> x = a \<bullet> c" for a x
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5493 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5494 | have "\<exists>y. a \<bullet> y = 0 \<and> c + y = x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5495 | by (metis that add.commute diff_add_cancel inner_commute inner_diff_left right_minus_eq) | 
| 67399 | 5496 |       then show "x \<in> (+) c ` {y. a \<bullet> y = 0}"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5497 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5498 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5499 |     have 2: "span ((\<lambda>x. x - c) ` S) = {x. a \<bullet> x = 0}"
 | 
| 67399 | 5500 |          if "(+) c ` span ((\<lambda>x. x - c) ` S) = {x. a \<bullet> x = b}" for a b
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5501 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5502 | have "b = a \<bullet> c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5503 | using span_0 that by fastforce | 
| 67399 | 5504 |       with that have "(+) c ` span ((\<lambda>x. x - c) ` S) = {x. a \<bullet> x = a \<bullet> c}"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5505 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5506 |       then have "span ((\<lambda>x. x - c) ` S) = (\<lambda>x. x - c) ` {x. a \<bullet> x = a \<bullet> c}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5507 | by (metis (no_types) image_cong translation_galois uminus_add_conv_diff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5508 |       also have "... = {x. a \<bullet> x = 0}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5509 | by (force simp: inner_distrib inner_diff_right | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5510 | intro: image_eqI [where x="x+c" for x]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5511 | finally show ?thesis . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5512 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5513 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5514 | apply (simp add: aff_dim_eq_dim [of c] affine_hull_span_gen [of c] \<open>c \<in> S\<close> hull_inc dim_eq_hyperplane | 
| 69661 | 5515 | del: One_nat_def cong: image_cong_simp, safe) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5516 | apply (fastforce simp add: inner_distrib intro: xc_im) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5517 | apply (force simp: intro!: 2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5518 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5519 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5520 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5521 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5522 | corollary aff_dim_hyperplane [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5523 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5524 |   shows "a \<noteq> 0 \<Longrightarrow> aff_dim {x. a \<bullet> x = r} = DIM('a) - 1"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5525 | by (metis aff_dim_eq_hyperplane affine_hull_eq affine_hyperplane) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5526 | |
| 70136 | 5527 | subsection\<^marker>\<open>tag unimportant\<close>\<open>Some stepping theorems\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5528 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5529 | lemma aff_dim_insert: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5530 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5531 | shows "aff_dim (insert a S) = (if a \<in> affine hull S then aff_dim S else aff_dim S + 1)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5532 | proof (cases "S = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5533 | case True then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5534 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5535 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5536 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5537 | then obtain x s' where S: "S = insert x s'" "x \<notin> s'" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5538 | by (meson Set.set_insert all_not_in_conv) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5539 | show ?thesis using S | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5540 | apply (simp add: hull_redundant cong: aff_dim_affine_hull2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5541 | apply (simp add: affine_hull_insert_span_gen hull_inc) | 
| 69661 | 5542 | by (force simp add: span_zero insert_commute [of a] hull_inc aff_dim_eq_dim [of x] dim_insert | 
| 5543 | cong: image_cong_simp) | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5544 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5545 | |
| 66297 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5546 | lemma affine_dependent_choose: | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5547 | fixes a :: "'a :: euclidean_space" | 
| 69508 | 5548 | assumes "\<not>(affine_dependent S)" | 
| 66297 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5549 | shows "affine_dependent(insert a S) \<longleftrightarrow> a \<notin> S \<and> a \<in> affine hull S" | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5550 | (is "?lhs = ?rhs") | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5551 | proof safe | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5552 | assume "affine_dependent (insert a S)" and "a \<in> S" | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5553 | then show "False" | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5554 | using \<open>a \<in> S\<close> assms insert_absorb by fastforce | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5555 | next | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5556 | assume lhs: "affine_dependent (insert a S)" | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5557 | then have "a \<notin> S" | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5558 | by (metis (no_types) assms insert_absorb) | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5559 | moreover have "finite S" | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5560 | using affine_independent_iff_card assms by blast | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5561 | moreover have "aff_dim (insert a S) \<noteq> int (card S)" | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5562 | using \<open>finite S\<close> affine_independent_iff_card \<open>a \<notin> S\<close> lhs by fastforce | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5563 | ultimately show "a \<in> affine hull S" | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5564 | by (metis aff_dim_affine_independent aff_dim_insert assms) | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5565 | next | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5566 | assume "a \<notin> S" and "a \<in> affine hull S" | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5567 | show "affine_dependent (insert a S)" | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5568 | by (simp add: \<open>a \<in> affine hull S\<close> \<open>a \<notin> S\<close> affine_dependent_def) | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5569 | qed | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5570 | |
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5571 | lemma affine_independent_insert: | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5572 | fixes a :: "'a :: euclidean_space" | 
| 69508 | 5573 | shows "\<lbrakk>\<not> affine_dependent S; a \<notin> affine hull S\<rbrakk> \<Longrightarrow> \<not> affine_dependent(insert a S)" | 
| 66297 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5574 | by (simp add: affine_dependent_choose) | 
| 
d425bdf419f5
polytopes: simplical subdivisions, etc.
 paulson <lp15@cam.ac.uk> parents: 
66289diff
changeset | 5575 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5576 | lemma subspace_bounded_eq_trivial: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5577 | fixes S :: "'a::real_normed_vector set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5578 | assumes "subspace S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5579 |     shows "bounded S \<longleftrightarrow> S = {0}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5580 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5581 | have "False" if "bounded S" "x \<in> S" "x \<noteq> 0" for x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5582 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5583 | obtain B where B: "\<And>y. y \<in> S \<Longrightarrow> norm y < B" "B > 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5584 | using \<open>bounded S\<close> by (force simp: bounded_pos_less) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5585 | have "(B / norm x) *\<^sub>R x \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5586 | using assms subspace_mul \<open>x \<in> S\<close> by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5587 | moreover have "norm ((B / norm x) *\<^sub>R x) = B" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5588 | using that B by (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5589 | ultimately show False using B by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5590 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5591 |   then have "bounded S \<Longrightarrow> S = {0}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5592 | using assms subspace_0 by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5593 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5594 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5595 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5596 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5597 | lemma affine_bounded_eq_trivial: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5598 | fixes S :: "'a::real_normed_vector set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5599 | assumes "affine S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5600 |     shows "bounded S \<longleftrightarrow> S = {} \<or> (\<exists>a. S = {a})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5601 | proof (cases "S = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5602 | case True then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5603 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5604 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5605 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5606 | then obtain b where "b \<in> S" by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5607 | with False assms show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5608 | apply safe | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5609 | using affine_diffs_subspace [OF assms \<open>b \<in> S\<close>] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5610 | apply (metis (no_types, lifting) subspace_bounded_eq_trivial ab_left_minus bounded_translation | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5611 | image_empty image_insert translation_invert) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5612 | apply force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5613 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5614 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5615 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5616 | lemma affine_bounded_eq_lowdim: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5617 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5618 | assumes "affine S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5619 | shows "bounded S \<longleftrightarrow> aff_dim S \<le> 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5620 | apply safe | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5621 | using affine_bounded_eq_trivial assms apply fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5622 | by (metis aff_dim_sing aff_dim_subset affine_dim_equal affine_sing all_not_in_conv assms bounded_empty bounded_insert dual_order.antisym empty_subsetI insert_subset) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5623 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5624 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5625 | lemma bounded_hyperplane_eq_trivial_0: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5626 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5627 | assumes "a \<noteq> 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5628 |   shows "bounded {x. a \<bullet> x = 0} \<longleftrightarrow> DIM('a) = 1"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5629 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5630 |   assume "bounded {x. a \<bullet> x = 0}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5631 |   then have "aff_dim {x. a \<bullet> x = 0} \<le> 0"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5632 | by (simp add: affine_bounded_eq_lowdim affine_hyperplane) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5633 |   with assms show "DIM('a) = 1"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5634 | by (simp add: le_Suc_eq aff_dim_hyperplane) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5635 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5636 |   assume "DIM('a) = 1"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5637 |   then show "bounded {x. a \<bullet> x = 0}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5638 | by (simp add: aff_dim_hyperplane affine_bounded_eq_lowdim affine_hyperplane assms) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5639 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5640 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5641 | lemma bounded_hyperplane_eq_trivial: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5642 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5643 |   shows "bounded {x. a \<bullet> x = r} \<longleftrightarrow> (if a = 0 then r \<noteq> 0 else DIM('a) = 1)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5644 | proof (simp add: bounded_hyperplane_eq_trivial_0, clarify) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5645 | assume "r \<noteq> 0" "a \<noteq> 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5646 |   have "aff_dim {x. y \<bullet> x = 0} = aff_dim {x. a \<bullet> x = r}" if "y \<noteq> 0" for y::'a
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5647 | by (metis that \<open>a \<noteq> 0\<close> aff_dim_hyperplane) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5648 |   then show "bounded {x. a \<bullet> x = r} = (DIM('a) = Suc 0)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5649 | by (metis One_nat_def \<open>a \<noteq> 0\<close> affine_bounded_eq_lowdim affine_hyperplane bounded_hyperplane_eq_trivial_0) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5650 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5651 | |
| 70136 | 5652 | subsection\<^marker>\<open>tag unimportant\<close>\<open>General case without assuming closure and getting non-strict separation\<close> | 
| 5653 | ||
| 5654 | proposition\<^marker>\<open>tag unimportant\<close> separating_hyperplane_closed_point_inset: | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5655 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5656 |   assumes "convex S" "closed S" "S \<noteq> {}" "z \<notin> S"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5657 | obtains a b where "a \<in> S" "(a - z) \<bullet> z < b" "\<And>x. x \<in> S \<Longrightarrow> b < (a - z) \<bullet> x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5658 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5659 | obtain y where "y \<in> S" and y: "\<And>u. u \<in> S \<Longrightarrow> dist z y \<le> dist z u" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5660 | using distance_attains_inf [of S z] assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5661 | then have *: "(y - z) \<bullet> z < (y - z) \<bullet> z + (norm (y - z))\<^sup>2 / 2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5662 | using \<open>y \<in> S\<close> \<open>z \<notin> S\<close> by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5663 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5664 | proof (rule that [OF \<open>y \<in> S\<close> *]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5665 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5666 | assume "x \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5667 | have yz: "0 < (y - z) \<bullet> (y - z)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5668 | using \<open>y \<in> S\<close> \<open>z \<notin> S\<close> by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5669 |     { assume 0: "0 < ((z - y) \<bullet> (x - y))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5670 | with any_closest_point_dot [OF \<open>convex S\<close> \<open>closed S\<close>] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5671 | have False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5672 | using y \<open>x \<in> S\<close> \<open>y \<in> S\<close> not_less by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5673 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5674 | then have "0 \<le> ((y - z) \<bullet> (x - y))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5675 | by (force simp: not_less inner_diff_left) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5676 | with yz have "0 < 2 * ((y - z) \<bullet> (x - y)) + (y - z) \<bullet> (y - z)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5677 | by (simp add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5678 | then show "(y - z) \<bullet> z + (norm (y - z))\<^sup>2 / 2 < (y - z) \<bullet> x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5679 | by (simp add: field_simps inner_diff_left inner_diff_right dot_square_norm [symmetric]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5680 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5681 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5682 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5683 | lemma separating_hyperplane_closed_0_inset: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5684 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5685 |   assumes "convex S" "closed S" "S \<noteq> {}" "0 \<notin> S"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5686 | obtains a b where "a \<in> S" "a \<noteq> 0" "0 < b" "\<And>x. x \<in> S \<Longrightarrow> a \<bullet> x > b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5687 | using separating_hyperplane_closed_point_inset [OF assms] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5688 | by simp (metis \<open>0 \<notin> S\<close>) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5689 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5690 | |
| 70136 | 5691 | proposition\<^marker>\<open>tag unimportant\<close> separating_hyperplane_set_0_inspan: | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5692 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5693 |   assumes "convex S" "S \<noteq> {}" "0 \<notin> S"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5694 | obtains a where "a \<in> span S" "a \<noteq> 0" "\<And>x. x \<in> S \<Longrightarrow> 0 \<le> a \<bullet> x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5695 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5696 |   define k where [abs_def]: "k c = {x. 0 \<le> c \<bullet> x}" for c :: 'a
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5697 |   have *: "span S \<inter> frontier (cball 0 1) \<inter> \<Inter>f' \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5698 | if f': "finite f'" "f' \<subseteq> k ` S" for f' | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5699 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5700 | obtain C where "C \<subseteq> S" "finite C" and C: "f' = k ` C" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5701 | using finite_subset_image [OF f'] by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5702 | obtain a where "a \<in> S" "a \<noteq> 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5703 |       using \<open>S \<noteq> {}\<close> \<open>0 \<notin> S\<close> ex_in_conv by blast
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5704 | then have "norm (a /\<^sub>R (norm a)) = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5705 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5706 | moreover have "a /\<^sub>R (norm a) \<in> span S" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 5707 | by (simp add: \<open>a \<in> S\<close> span_scale span_base) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5708 | ultimately have ass: "a /\<^sub>R (norm a) \<in> span S \<inter> sphere 0 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5709 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5710 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5711 |     proof (cases "C = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5712 | case True with C ass show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5713 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5714 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5715 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5716 | have "closed (convex hull C)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5717 | using \<open>finite C\<close> compact_eq_bounded_closed finite_imp_compact_convex_hull by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5718 |       moreover have "convex hull C \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5719 | by (simp add: False) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5720 | moreover have "0 \<notin> convex hull C" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5721 | by (metis \<open>C \<subseteq> S\<close> \<open>convex S\<close> \<open>0 \<notin> S\<close> convex_hull_subset hull_same insert_absorb insert_subset) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5722 | ultimately obtain a b | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5723 | where "a \<in> convex hull C" "a \<noteq> 0" "0 < b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5724 | and ab: "\<And>x. x \<in> convex hull C \<Longrightarrow> a \<bullet> x > b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5725 | using separating_hyperplane_closed_0_inset by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5726 | then have "a \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5727 | by (metis \<open>C \<subseteq> S\<close> assms(1) subsetCE subset_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5728 | moreover have "norm (a /\<^sub>R (norm a)) = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5729 | using \<open>a \<noteq> 0\<close> by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5730 | moreover have "a /\<^sub>R (norm a) \<in> span S" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 5731 | by (simp add: \<open>a \<in> S\<close> span_scale span_base) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5732 | ultimately have ass: "a /\<^sub>R (norm a) \<in> span S \<inter> sphere 0 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5733 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5734 |       have aa: "a /\<^sub>R (norm a) \<in> (\<Inter>c\<in>C. {x. 0 \<le> c \<bullet> x})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5735 | apply (clarsimp simp add: divide_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5736 | using ab \<open>0 < b\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5737 | by (metis hull_inc inner_commute less_eq_real_def less_trans) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5738 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5739 | apply (simp add: C k_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5740 | using ass aa Int_iff empty_iff by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5741 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5742 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5743 |   have "(span S \<inter> frontier(cball 0 1)) \<inter> (\<Inter> (k ` S)) \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5744 | apply (rule compact_imp_fip) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5745 | apply (blast intro: compact_cball) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5746 | using closed_halfspace_ge k_def apply blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5747 | apply (metis *) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5748 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5749 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5750 | unfolding set_eq_iff k_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5751 | by simp (metis inner_commute norm_eq_zero that zero_neq_one) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5752 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5753 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5754 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5755 | lemma separating_hyperplane_set_point_inaff: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5756 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5757 |   assumes "convex S" "S \<noteq> {}" and zno: "z \<notin> S"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5758 | obtains a b where "(z + a) \<in> affine hull (insert z S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5759 | and "a \<noteq> 0" and "a \<bullet> z \<le> b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5760 | and "\<And>x. x \<in> S \<Longrightarrow> a \<bullet> x \<ge> b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5761 | proof - | 
| 69661 | 5762 | from separating_hyperplane_set_0_inspan [of "image (\<lambda>x. -z + x) S"] | 
| 67399 | 5763 | have "convex ((+) (- z) ` S)" | 
| 69661 | 5764 | using \<open>convex S\<close> by simp | 
| 67399 | 5765 |   moreover have "(+) (- z) ` S \<noteq> {}"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5766 |     by (simp add: \<open>S \<noteq> {}\<close>)
 | 
| 67399 | 5767 | moreover have "0 \<notin> (+) (- z) ` S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5768 | using zno by auto | 
| 67399 | 5769 | ultimately obtain a where "a \<in> span ((+) (- z) ` S)" "a \<noteq> 0" | 
| 5770 | and a: "\<And>x. x \<in> ((+) (- z) ` S) \<Longrightarrow> 0 \<le> a \<bullet> x" | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5771 | using separating_hyperplane_set_0_inspan [of "image (\<lambda>x. -z + x) S"] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5772 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5773 | then have szx: "\<And>x. x \<in> S \<Longrightarrow> a \<bullet> z \<le> a \<bullet> x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5774 | by (metis (no_types, lifting) imageI inner_minus_right inner_right_distrib minus_add neg_le_0_iff_le neg_le_iff_le real_add_le_0_iff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5775 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5776 | apply (rule_tac a=a and b = "a \<bullet> z" in that, simp_all) | 
| 67399 | 5777 | using \<open>a \<in> span ((+) (- z) ` S)\<close> affine_hull_insert_span_gen apply blast | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5778 | apply (simp_all add: \<open>a \<noteq> 0\<close> szx) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5779 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5780 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5781 | |
| 70136 | 5782 | proposition\<^marker>\<open>tag unimportant\<close> supporting_hyperplane_rel_boundary: | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5783 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5784 | assumes "convex S" "x \<in> S" and xno: "x \<notin> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5785 | obtains a where "a \<noteq> 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5786 | and "\<And>y. y \<in> S \<Longrightarrow> a \<bullet> x \<le> a \<bullet> y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5787 | and "\<And>y. y \<in> rel_interior S \<Longrightarrow> a \<bullet> x < a \<bullet> y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5788 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5789 | obtain a b where aff: "(x + a) \<in> affine hull (insert x (rel_interior S))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5790 | and "a \<noteq> 0" and "a \<bullet> x \<le> b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5791 | and ageb: "\<And>u. u \<in> (rel_interior S) \<Longrightarrow> a \<bullet> u \<ge> b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5792 | using separating_hyperplane_set_point_inaff [of "rel_interior S" x] assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5793 | by (auto simp: rel_interior_eq_empty convex_rel_interior) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5794 | have le_ay: "a \<bullet> x \<le> a \<bullet> y" if "y \<in> S" for y | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5795 | proof - | 
| 67399 | 5796 | have con: "continuous_on (closure (rel_interior S)) ((\<bullet>) a)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5797 | by (rule continuous_intros continuous_on_subset | blast)+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5798 | have y: "y \<in> closure (rel_interior S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5799 | using \<open>convex S\<close> closure_def convex_closure_rel_interior \<open>y \<in> S\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5800 | by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5801 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5802 | using continuous_ge_on_closure [OF con y] ageb \<open>a \<bullet> x \<le> b\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5803 | by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5804 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5805 | have 3: "a \<bullet> x < a \<bullet> y" if "y \<in> rel_interior S" for y | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5806 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5807 | obtain e where "0 < e" "y \<in> S" and e: "cball y e \<inter> affine hull S \<subseteq> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5808 | using \<open>y \<in> rel_interior S\<close> by (force simp: rel_interior_cball) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5809 | define y' where "y' = y - (e / norm a) *\<^sub>R ((x + a) - x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5810 | have "y' \<in> cball y e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5811 | unfolding y'_def using \<open>0 < e\<close> by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5812 | moreover have "y' \<in> affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5813 | unfolding y'_def | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5814 | by (metis \<open>x \<in> S\<close> \<open>y \<in> S\<close> \<open>convex S\<close> aff affine_affine_hull hull_redundant | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5815 | rel_interior_same_affine_hull hull_inc mem_affine_3_minus2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5816 | ultimately have "y' \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5817 | using e by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5818 | have "a \<bullet> x \<le> a \<bullet> y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5819 | using le_ay \<open>a \<noteq> 0\<close> \<open>y \<in> S\<close> by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5820 | moreover have "a \<bullet> x \<noteq> a \<bullet> y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5821 | using le_ay [OF \<open>y' \<in> S\<close>] \<open>a \<noteq> 0\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5822 | apply (simp add: y'_def inner_diff dot_square_norm power2_eq_square) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5823 | by (metis \<open>0 < e\<close> add_le_same_cancel1 inner_commute inner_real_def inner_zero_left le_diff_eq norm_le_zero_iff real_mult_le_cancel_iff2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5824 | ultimately show ?thesis by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5825 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5826 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5827 | by (rule that [OF \<open>a \<noteq> 0\<close> le_ay 3]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5828 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5829 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5830 | lemma supporting_hyperplane_relative_frontier: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5831 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5832 | assumes "convex S" "x \<in> closure S" "x \<notin> rel_interior S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5833 | obtains a where "a \<noteq> 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5834 | and "\<And>y. y \<in> closure S \<Longrightarrow> a \<bullet> x \<le> a \<bullet> y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5835 | and "\<And>y. y \<in> rel_interior S \<Longrightarrow> a \<bullet> x < a \<bullet> y" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5836 | using supporting_hyperplane_rel_boundary [of "closure S" x] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5837 | by (metis assms convex_closure convex_rel_interior_closure) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5838 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5839 | |
| 70136 | 5840 | subsection\<^marker>\<open>tag unimportant\<close>\<open> Some results on decomposing convex hulls: intersections, simplicial subdivision\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5841 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5842 | lemma | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5843 | fixes s :: "'a::euclidean_space set" | 
| 69508 | 5844 | assumes "\<not> affine_dependent(s \<union> t)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5845 | shows convex_hull_Int_subset: "convex hull s \<inter> convex hull t \<subseteq> convex hull (s \<inter> t)" (is ?C) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5846 | and affine_hull_Int_subset: "affine hull s \<inter> affine hull t \<subseteq> affine hull (s \<inter> t)" (is ?A) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5847 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5848 | have [simp]: "finite s" "finite t" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5849 | using aff_independent_finite assms by blast+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5850 | have "sum u (s \<inter> t) = 1 \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5851 | (\<Sum>v\<in>s \<inter> t. u v *\<^sub>R v) = (\<Sum>v\<in>s. u v *\<^sub>R v)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5852 | if [simp]: "sum u s = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5853 | "sum v t = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5854 | and eq: "(\<Sum>x\<in>t. v x *\<^sub>R x) = (\<Sum>x\<in>s. u x *\<^sub>R x)" for u v | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5855 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5856 | define f where "f x = (if x \<in> s then u x else 0) - (if x \<in> t then v x else 0)" for x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5857 | have "sum f (s \<union> t) = 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5858 | apply (simp add: f_def sum_Un sum_subtractf) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5859 | apply (simp add: sum.inter_restrict [symmetric] Int_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5860 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5861 | moreover have "(\<Sum>x\<in>(s \<union> t). f x *\<^sub>R x) = 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5862 | apply (simp add: f_def sum_Un scaleR_left_diff_distrib sum_subtractf) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5863 | apply (simp add: if_smult sum.inter_restrict [symmetric] Int_commute eq | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5864 | cong del: if_weak_cong) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5865 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5866 | ultimately have "\<And>v. v \<in> s \<union> t \<Longrightarrow> f v = 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5867 | using aff_independent_finite assms unfolding affine_dependent_explicit | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5868 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5869 | then have u [simp]: "\<And>x. x \<in> s \<Longrightarrow> u x = (if x \<in> t then v x else 0)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5870 | by (simp add: f_def) presburger | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5871 | have "sum u (s \<inter> t) = sum u s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5872 | by (simp add: sum.inter_restrict) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5873 | then have "sum u (s \<inter> t) = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5874 | using that by linarith | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5875 | moreover have "(\<Sum>v\<in>s \<inter> t. u v *\<^sub>R v) = (\<Sum>v\<in>s. u v *\<^sub>R v)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5876 | by (auto simp: if_smult sum.inter_restrict intro: sum.cong) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5877 | ultimately show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5878 | by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5879 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5880 | then show ?A ?C | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5881 | by (auto simp: convex_hull_finite affine_hull_finite) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5882 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5883 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5884 | |
| 70136 | 5885 | proposition\<^marker>\<open>tag unimportant\<close> affine_hull_Int: | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5886 | fixes s :: "'a::euclidean_space set" | 
| 69508 | 5887 | assumes "\<not> affine_dependent(s \<union> t)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5888 | shows "affine hull (s \<inter> t) = affine hull s \<inter> affine hull t" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5889 | apply (rule subset_antisym) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5890 | apply (simp add: hull_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5891 | by (simp add: affine_hull_Int_subset assms) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5892 | |
| 70136 | 5893 | proposition\<^marker>\<open>tag unimportant\<close> convex_hull_Int: | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5894 | fixes s :: "'a::euclidean_space set" | 
| 69508 | 5895 | assumes "\<not> affine_dependent(s \<union> t)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5896 | shows "convex hull (s \<inter> t) = convex hull s \<inter> convex hull t" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5897 | apply (rule subset_antisym) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5898 | apply (simp add: hull_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5899 | by (simp add: convex_hull_Int_subset assms) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5900 | |
| 70136 | 5901 | proposition\<^marker>\<open>tag unimportant\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5902 | fixes s :: "'a::euclidean_space set set" | 
| 69508 | 5903 | assumes "\<not> affine_dependent (\<Union>s)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5904 | shows affine_hull_Inter: "affine hull (\<Inter>s) = (\<Inter>t\<in>s. affine hull t)" (is "?A") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5905 | and convex_hull_Inter: "convex hull (\<Inter>s) = (\<Inter>t\<in>s. convex hull t)" (is "?C") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5906 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5907 | have "finite s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5908 | using aff_independent_finite assms finite_UnionD by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5909 | then have "?A \<and> ?C" using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5910 | proof (induction s rule: finite_induct) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5911 | case empty then show ?case by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5912 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5913 | case (insert t F) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5914 | then show ?case | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5915 |     proof (cases "F={}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5916 | case True then show ?thesis by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5917 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5918 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5919 | with "insert.prems" have [simp]: "\<not> affine_dependent (t \<union> \<Inter>F)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5920 | by (auto intro: affine_dependent_subset) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5921 | have [simp]: "\<not> affine_dependent (\<Union>F)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5922 | using affine_independent_subset insert.prems by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5923 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5924 | by (simp add: affine_hull_Int convex_hull_Int insert.IH) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5925 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5926 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5927 | then show "?A" "?C" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5928 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5929 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5930 | |
| 70136 | 5931 | proposition\<^marker>\<open>tag unimportant\<close> in_convex_hull_exchange_unique: | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5932 | fixes S :: "'a::euclidean_space set" | 
| 69508 | 5933 | assumes naff: "\<not> affine_dependent S" and a: "a \<in> convex hull S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5934 | and S: "T \<subseteq> S" "T' \<subseteq> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5935 | and x: "x \<in> convex hull (insert a T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5936 | and x': "x \<in> convex hull (insert a T')" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5937 | shows "x \<in> convex hull (insert a (T \<inter> T'))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5938 | proof (cases "a \<in> S") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5939 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5940 | then have "\<not> affine_dependent (insert a T \<union> insert a T')" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5941 | using affine_dependent_subset assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5942 | then have "x \<in> convex hull (insert a T \<inter> insert a T')" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5943 | by (metis IntI convex_hull_Int x x') | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5944 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5945 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5946 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5947 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5948 | then have anot: "a \<notin> T" "a \<notin> T'" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5949 | using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5950 | have [simp]: "finite S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5951 | by (simp add: aff_independent_finite assms) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5952 | then obtain b where b0: "\<And>s. s \<in> S \<Longrightarrow> 0 \<le> b s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5953 | and b1: "sum b S = 1" and aeq: "a = (\<Sum>s\<in>S. b s *\<^sub>R s)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5954 | using a by (auto simp: convex_hull_finite) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5955 | have fin [simp]: "finite T" "finite T'" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5956 | using assms infinite_super \<open>finite S\<close> by blast+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5957 | then obtain c c' where c0: "\<And>t. t \<in> insert a T \<Longrightarrow> 0 \<le> c t" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5958 | and c1: "sum c (insert a T) = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5959 | and xeq: "x = (\<Sum>t \<in> insert a T. c t *\<^sub>R t)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5960 | and c'0: "\<And>t. t \<in> insert a T' \<Longrightarrow> 0 \<le> c' t" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5961 | and c'1: "sum c' (insert a T') = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5962 | and x'eq: "x = (\<Sum>t \<in> insert a T'. c' t *\<^sub>R t)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5963 | using x x' by (auto simp: convex_hull_finite) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5964 | with fin anot | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5965 | have sumTT': "sum c T = 1 - c a" "sum c' T' = 1 - c' a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5966 | and wsumT: "(\<Sum>t \<in> T. c t *\<^sub>R t) = x - c a *\<^sub>R a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5967 | by simp_all | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5968 | have wsumT': "(\<Sum>t \<in> T'. c' t *\<^sub>R t) = x - c' a *\<^sub>R a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5969 | using x'eq fin anot by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5970 | define cc where "cc \<equiv> \<lambda>x. if x \<in> T then c x else 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5971 | define cc' where "cc' \<equiv> \<lambda>x. if x \<in> T' then c' x else 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5972 | define dd where "dd \<equiv> \<lambda>x. cc x - cc' x + (c a - c' a) * b x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5973 | have sumSS': "sum cc S = 1 - c a" "sum cc' S = 1 - c' a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5974 | unfolding cc_def cc'_def using S | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5975 | by (simp_all add: Int_absorb1 Int_absorb2 sum_subtractf sum.inter_restrict [symmetric] sumTT') | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5976 | have wsumSS: "(\<Sum>t \<in> S. cc t *\<^sub>R t) = x - c a *\<^sub>R a" "(\<Sum>t \<in> S. cc' t *\<^sub>R t) = x - c' a *\<^sub>R a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5977 | unfolding cc_def cc'_def using S | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5978 | by (simp_all add: Int_absorb1 Int_absorb2 if_smult sum.inter_restrict [symmetric] wsumT wsumT' cong: if_cong) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5979 | have sum_dd0: "sum dd S = 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5980 | unfolding dd_def using S | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5981 | by (simp add: sumSS' comm_monoid_add_class.sum.distrib sum_subtractf | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5982 | algebra_simps sum_distrib_right [symmetric] b1) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5983 | have "(\<Sum>v\<in>S. (b v * x) *\<^sub>R v) = x *\<^sub>R (\<Sum>v\<in>S. b v *\<^sub>R v)" for x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5984 | by (simp add: pth_5 real_vector.scale_sum_right mult.commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5985 | then have *: "(\<Sum>v\<in>S. (b v * x) *\<^sub>R v) = x *\<^sub>R a" for x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5986 | using aeq by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5987 | have "(\<Sum>v \<in> S. dd v *\<^sub>R v) = 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5988 | unfolding dd_def using S | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5989 | by (simp add: * wsumSS sum.distrib sum_subtractf algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5990 | then have dd0: "dd v = 0" if "v \<in> S" for v | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5991 | using naff that \<open>finite S\<close> sum_dd0 unfolding affine_dependent_explicit | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5992 | apply (simp only: not_ex) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5993 | apply (drule_tac x=S in spec) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5994 | apply (drule_tac x=dd in spec, simp) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5995 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5996 | consider "c' a \<le> c a" | "c a \<le> c' a" by linarith | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5997 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5998 | proof cases | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5999 | case 1 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6000 | then have "sum cc S \<le> sum cc' S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6001 | by (simp add: sumSS') | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6002 | then have le: "cc x \<le> cc' x" if "x \<in> S" for x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6003 | using dd0 [OF that] 1 b0 mult_left_mono that | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6004 | by (fastforce simp add: dd_def algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6005 | have cc0: "cc x = 0" if "x \<in> S" "x \<notin> T \<inter> T'" for x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6006 | using le [OF \<open>x \<in> S\<close>] that c0 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6007 | by (force simp: cc_def cc'_def split: if_split_asm) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6008 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6009 | proof (simp add: convex_hull_finite, intro exI conjI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6010 | show "\<forall>x\<in>T \<inter> T'. 0 \<le> (cc(a := c a)) x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6011 | by (simp add: c0 cc_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6012 | show "0 \<le> (cc(a := c a)) a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6013 | by (simp add: c0) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6014 | have "sum (cc(a := c a)) (insert a (T \<inter> T')) = c a + sum (cc(a := c a)) (T \<inter> T')" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6015 | by (simp add: anot) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6016 | also have "... = c a + sum (cc(a := c a)) S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6017 | apply simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6018 | apply (rule sum.mono_neutral_left) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6019 | using \<open>T \<subseteq> S\<close> apply (auto simp: \<open>a \<notin> S\<close> cc0) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6020 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6021 | also have "... = c a + (1 - c a)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6022 | by (metis \<open>a \<notin> S\<close> fun_upd_other sum.cong sumSS') | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6023 | finally show "sum (cc(a := c a)) (insert a (T \<inter> T')) = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6024 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6025 | have "(\<Sum>x\<in>insert a (T \<inter> T'). (cc(a := c a)) x *\<^sub>R x) = c a *\<^sub>R a + (\<Sum>x \<in> T \<inter> T'. (cc(a := c a)) x *\<^sub>R x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6026 | by (simp add: anot) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6027 | also have "... = c a *\<^sub>R a + (\<Sum>x \<in> S. (cc(a := c a)) x *\<^sub>R x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6028 | apply simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6029 | apply (rule sum.mono_neutral_left) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6030 | using \<open>T \<subseteq> S\<close> apply (auto simp: \<open>a \<notin> S\<close> cc0) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6031 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6032 | also have "... = c a *\<^sub>R a + x - c a *\<^sub>R a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6033 | by (simp add: wsumSS \<open>a \<notin> S\<close> if_smult sum_delta_notmem) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6034 | finally show "(\<Sum>x\<in>insert a (T \<inter> T'). (cc(a := c a)) x *\<^sub>R x) = x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6035 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6036 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6037 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6038 | case 2 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6039 | then have "sum cc' S \<le> sum cc S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6040 | by (simp add: sumSS') | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6041 | then have le: "cc' x \<le> cc x" if "x \<in> S" for x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6042 | using dd0 [OF that] 2 b0 mult_left_mono that | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6043 | by (fastforce simp add: dd_def algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6044 | have cc0: "cc' x = 0" if "x \<in> S" "x \<notin> T \<inter> T'" for x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6045 | using le [OF \<open>x \<in> S\<close>] that c'0 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6046 | by (force simp: cc_def cc'_def split: if_split_asm) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6047 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6048 | proof (simp add: convex_hull_finite, intro exI conjI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6049 | show "\<forall>x\<in>T \<inter> T'. 0 \<le> (cc'(a := c' a)) x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6050 | by (simp add: c'0 cc'_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6051 | show "0 \<le> (cc'(a := c' a)) a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6052 | by (simp add: c'0) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6053 | have "sum (cc'(a := c' a)) (insert a (T \<inter> T')) = c' a + sum (cc'(a := c' a)) (T \<inter> T')" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6054 | by (simp add: anot) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6055 | also have "... = c' a + sum (cc'(a := c' a)) S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6056 | apply simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6057 | apply (rule sum.mono_neutral_left) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6058 | using \<open>T \<subseteq> S\<close> apply (auto simp: \<open>a \<notin> S\<close> cc0) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6059 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6060 | also have "... = c' a + (1 - c' a)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6061 | by (metis \<open>a \<notin> S\<close> fun_upd_other sum.cong sumSS') | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6062 | finally show "sum (cc'(a := c' a)) (insert a (T \<inter> T')) = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6063 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6064 | have "(\<Sum>x\<in>insert a (T \<inter> T'). (cc'(a := c' a)) x *\<^sub>R x) = c' a *\<^sub>R a + (\<Sum>x \<in> T \<inter> T'. (cc'(a := c' a)) x *\<^sub>R x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6065 | by (simp add: anot) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6066 | also have "... = c' a *\<^sub>R a + (\<Sum>x \<in> S. (cc'(a := c' a)) x *\<^sub>R x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6067 | apply simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6068 | apply (rule sum.mono_neutral_left) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6069 | using \<open>T \<subseteq> S\<close> apply (auto simp: \<open>a \<notin> S\<close> cc0) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6070 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6071 | also have "... = c a *\<^sub>R a + x - c a *\<^sub>R a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6072 | by (simp add: wsumSS \<open>a \<notin> S\<close> if_smult sum_delta_notmem) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6073 | finally show "(\<Sum>x\<in>insert a (T \<inter> T'). (cc'(a := c' a)) x *\<^sub>R x) = x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6074 | by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6075 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6076 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6077 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6078 | |
| 70136 | 6079 | corollary\<^marker>\<open>tag unimportant\<close> convex_hull_exchange_Int: | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6080 | fixes a :: "'a::euclidean_space" | 
| 69508 | 6081 | assumes "\<not> affine_dependent S" "a \<in> convex hull S" "T \<subseteq> S" "T' \<subseteq> S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6082 | shows "(convex hull (insert a T)) \<inter> (convex hull (insert a T')) = | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6083 | convex hull (insert a (T \<inter> T'))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6084 | apply (rule subset_antisym) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6085 | using in_convex_hull_exchange_unique assms apply blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6086 | by (metis hull_mono inf_le1 inf_le2 insert_inter_insert le_inf_iff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6087 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6088 | lemma Int_closed_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6089 | fixes b :: "'a::euclidean_space" | 
| 69508 | 6090 |   assumes "b \<in> closed_segment a c \<or> \<not> collinear{a,b,c}"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6091 |     shows "closed_segment a b \<inter> closed_segment b c = {b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6092 | proof (cases "c = a") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6093 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6094 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6095 | using assms collinear_3_eq_affine_dependent by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6096 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6097 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6098 | from assms show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6099 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6100 | assume "b \<in> closed_segment a c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6101 |     moreover have "\<not> affine_dependent {a, c}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6102 | by (simp add: affine_independent_2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6103 | ultimately show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6104 |       using False convex_hull_exchange_Int [of "{a,c}" b "{a}" "{c}"]
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6105 | by (simp add: segment_convex_hull insert_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6106 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6107 |     assume ncoll: "\<not> collinear {a, b, c}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6108 |     have False if "closed_segment a b \<inter> closed_segment b c \<noteq> {b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6109 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6110 | have "b \<in> closed_segment a b" and "b \<in> closed_segment b c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6111 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6112 | with that obtain d where "b \<noteq> d" "d \<in> closed_segment a b" "d \<in> closed_segment b c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6113 | by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6114 |       then have d: "collinear {a, d, b}"  "collinear {b, d, c}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6115 | by (auto simp: between_mem_segment between_imp_collinear) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6116 |       have "collinear {a, b, c}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6117 | apply (rule collinear_3_trans [OF _ _ \<open>b \<noteq> d\<close>]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6118 | using d by (auto simp: insert_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6119 | with ncoll show False .. | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6120 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6121 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6122 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6123 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6124 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6125 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6126 | lemma affine_hull_finite_intersection_hyperplanes: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6127 | fixes s :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6128 | obtains f where | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6129 | "finite f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6130 |      "of_nat (card f) + aff_dim s = DIM('a)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6131 | "affine hull s = \<Inter>f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6132 |      "\<And>h. h \<in> f \<Longrightarrow> \<exists>a b. a \<noteq> 0 \<and> h = {x. a \<bullet> x = b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6133 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6134 | obtain b where "b \<subseteq> s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6135 | and indb: "\<not> affine_dependent b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6136 | and eq: "affine hull s = affine hull b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6137 | using affine_basis_exists by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6138 | obtain c where indc: "\<not> affine_dependent c" and "b \<subseteq> c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6139 | and affc: "affine hull c = UNIV" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6140 | by (metis extend_to_affine_basis affine_UNIV hull_same indb subset_UNIV) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6141 | then have "finite c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6142 | by (simp add: aff_independent_finite) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6143 | then have fbc: "finite b" "card b \<le> card c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6144 | using \<open>b \<subseteq> c\<close> infinite_super by (auto simp: card_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6145 |   have imeq: "(\<lambda>x. affine hull x) ` ((\<lambda>a. c - {a}) ` (c - b)) = ((\<lambda>a. affine hull (c - {a})) ` (c - b))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6146 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6147 |   have card1: "card ((\<lambda>a. affine hull (c - {a})) ` (c - b)) = card (c - b)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6148 | apply (rule card_image [OF inj_onI]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6149 | by (metis Diff_eq_empty_iff Diff_iff indc affine_dependent_def hull_subset insert_iff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6150 |   have card2: "(card (c - b)) + aff_dim s = DIM('a)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6151 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6152 | have aff: "aff_dim (UNIV::'a set) = aff_dim c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6153 | by (metis aff_dim_affine_hull affc) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6154 | have "aff_dim b = aff_dim s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6155 | by (metis (no_types) aff_dim_affine_hull eq) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6156 | then have "int (card b) = 1 + aff_dim s" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6157 | by (simp add: aff_dim_affine_independent indb) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6158 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6159 | using fbc aff | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6160 | by (simp add: \<open>\<not> affine_dependent c\<close> \<open>b \<subseteq> c\<close> aff_dim_affine_independent aff_dim_UNIV card_Diff_subset of_nat_diff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6161 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6162 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6163 | proof (cases "c = b") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6164 | case True show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6165 |       apply (rule_tac f="{}" in that)
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6166 | using True affc | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6167 | apply (simp_all add: eq [symmetric]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6168 | by (metis aff_dim_UNIV aff_dim_affine_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6169 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6170 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6171 |     have ind: "\<not> affine_dependent (\<Union>a\<in>c - b. c - {a})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6172 | by (rule affine_independent_subset [OF indc]) auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6173 |     have affeq: "affine hull s = (\<Inter>x\<in>(\<lambda>a. c - {a}) ` (c - b). affine hull x)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6174 | using \<open>b \<subseteq> c\<close> False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6175 | apply (subst affine_hull_Inter [OF ind, symmetric]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6176 | apply (simp add: eq double_diff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6177 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6178 |     have *: "1 + aff_dim (c - {t}) = int (DIM('a))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6179 | if t: "t \<in> c" for t | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6180 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6181 | have "insert t c = c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6182 | using t by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6183 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6184 | by (metis (full_types) add.commute aff_dim_affine_hull aff_dim_insert aff_dim_UNIV affc affine_dependent_def indc insert_Diff_single t) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6185 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6186 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6187 |       apply (rule_tac f = "(\<lambda>x. affine hull x) ` ((\<lambda>a. c - {a}) ` (c - b))" in that)
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6188 | using \<open>finite c\<close> apply blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6189 | apply (simp add: imeq card1 card2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6190 | apply (simp add: affeq, clarify) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6191 | apply (metis DIM_positive One_nat_def Suc_leI add_diff_cancel_left' of_nat_1 aff_dim_eq_hyperplane of_nat_diff *) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6192 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6193 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6194 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6195 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6196 | lemma affine_hyperplane_sums_eq_UNIV_0: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6197 | fixes S :: "'a :: euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6198 | assumes "affine S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6199 | and "0 \<in> S" and "w \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6200 | and "a \<bullet> w \<noteq> 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6201 |    shows "{x + y| x y. x \<in> S \<and> a \<bullet> y = 0} = UNIV"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6202 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6203 | have "subspace S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6204 | by (simp add: assms subspace_affine) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6205 |   have span1: "span {y. a \<bullet> y = 0} \<subseteq> span {x + y |x y. x \<in> S \<and> a \<bullet> y = 0}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6206 | apply (rule span_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6207 | using \<open>0 \<in> S\<close> add.left_neutral by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6208 |   have "w \<notin> span {y. a \<bullet> y = 0}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6209 | using \<open>a \<bullet> w \<noteq> 0\<close> span_induct subspace_hyperplane by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6210 |   moreover have "w \<in> span {x + y |x y. x \<in> S \<and> a \<bullet> y = 0}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6211 | using \<open>w \<in> S\<close> | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 6212 | by (metis (mono_tags, lifting) inner_zero_right mem_Collect_eq pth_d span_base) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6213 |   ultimately have span2: "span {y. a \<bullet> y = 0} \<noteq> span {x + y |x y. x \<in> S \<and> a \<bullet> y = 0}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6214 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6215 | have "a \<noteq> 0" using assms inner_zero_left by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6216 |   then have "DIM('a) - 1 = dim {y. a \<bullet> y = 0}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6217 | by (simp add: dim_hyperplane) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6218 |   also have "... < dim {x + y |x y. x \<in> S \<and> a \<bullet> y = 0}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6219 | using span1 span2 by (blast intro: dim_psubset) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6220 |   finally have DIM_lt: "DIM('a) - 1 < dim {x + y |x y. x \<in> S \<and> a \<bullet> y = 0}" .
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6221 |   have subs: "subspace {x + y| x y. x \<in> S \<and> a \<bullet> y = 0}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6222 | using subspace_sums [OF \<open>subspace S\<close> subspace_hyperplane] by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6223 |   moreover have "span {x + y| x y. x \<in> S \<and> a \<bullet> y = 0} = UNIV"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6224 | apply (rule dim_eq_full [THEN iffD1]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6225 | apply (rule antisym [OF dim_subset_UNIV]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6226 | using DIM_lt apply simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6227 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6228 | ultimately show ?thesis | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 6229 | by (simp add: subs) (metis (lifting) span_eq_iff subs) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6230 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6231 | |
| 70136 | 6232 | proposition\<^marker>\<open>tag unimportant\<close> affine_hyperplane_sums_eq_UNIV: | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6233 | fixes S :: "'a :: euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6234 | assumes "affine S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6235 |       and "S \<inter> {v. a \<bullet> v = b} \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6236 |       and "S - {v. a \<bullet> v = b} \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6237 |     shows "{x + y| x y. x \<in> S \<and> a \<bullet> y = b} = UNIV"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6238 | proof (cases "a = 0") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6239 | case True with assms show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6240 | by (auto simp: if_splits) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6241 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6242 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6243 | obtain c where "c \<in> S" and c: "a \<bullet> c = b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6244 | using assms by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6245 | with affine_diffs_subspace [OF \<open>affine S\<close>] | 
| 67399 | 6246 | have "subspace ((+) (- c) ` S)" by blast | 
| 6247 | then have aff: "affine ((+) (- c) ` S)" | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6248 | by (simp add: subspace_imp_affine) | 
| 67399 | 6249 | have 0: "0 \<in> (+) (- c) ` S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6250 | by (simp add: \<open>c \<in> S\<close>) | 
| 67399 | 6251 | obtain d where "d \<in> S" and "a \<bullet> d \<noteq> b" and dc: "d-c \<in> (+) (- c) ` S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6252 | using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6253 | then have adc: "a \<bullet> (d - c) \<noteq> 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6254 | by (simp add: c inner_diff_right) | 
| 67399 | 6255 |   let ?U = "(+) (c+c) ` {x + y |x y. x \<in> (+) (- c) ` S \<and> a \<bullet> y = 0}"
 | 
| 6256 |   have "u + v \<in> (+) (c + c) ` {x + v |x v. x \<in> (+) (- c) ` S \<and> a \<bullet> v = 0}"
 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6257 | if "u \<in> S" "b = a \<bullet> v" for u v | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6258 | apply (rule_tac x="u+v-c-c" in image_eqI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6259 | apply (simp_all add: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6260 | apply (rule_tac x="u-c" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6261 | apply (rule_tac x="v-c" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6262 | apply (simp add: algebra_simps that c) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6263 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6264 | moreover have "\<lbrakk>a \<bullet> v = 0; u \<in> S\<rbrakk> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6265 | \<Longrightarrow> \<exists>x ya. v + (u + c) = x + ya \<and> x \<in> S \<and> a \<bullet> ya = b" for v u | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6266 | by (metis add.left_commute c inner_right_distrib pth_d) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6267 |   ultimately have "{x + y |x y. x \<in> S \<and> a \<bullet> y = b} = ?U"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6268 | by (fastforce simp: algebra_simps) | 
| 69661 | 6269 | also have "... = range ((+) (c + c))" | 
| 6270 | by (simp only: affine_hyperplane_sums_eq_UNIV_0 [OF aff 0 dc adc]) | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6271 | also have "... = UNIV" | 
| 69661 | 6272 | by simp | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6273 | finally show ?thesis . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6274 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6275 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6276 | lemma aff_dim_sums_Int_0: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6277 | assumes "affine S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6278 | and "affine T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6279 | and "0 \<in> S" "0 \<in> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6280 |     shows "aff_dim {x + y| x y. x \<in> S \<and> y \<in> T} = (aff_dim S + aff_dim T) - aff_dim(S \<inter> T)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6281 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6282 |   have "0 \<in> {x + y |x y. x \<in> S \<and> y \<in> T}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6283 | using assms by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6284 |   then have 0: "0 \<in> affine hull {x + y |x y. x \<in> S \<and> y \<in> T}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6285 | by (metis (lifting) hull_inc) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6286 | have sub: "subspace S" "subspace T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6287 | using assms by (auto simp: subspace_affine) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6288 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6289 | using dim_sums_Int [OF sub] by (simp add: aff_dim_zero assms 0 hull_inc) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6290 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6291 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6292 | proposition aff_dim_sums_Int: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6293 | assumes "affine S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6294 | and "affine T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6295 |       and "S \<inter> T \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6296 |     shows "aff_dim {x + y| x y. x \<in> S \<and> y \<in> T} = (aff_dim S + aff_dim T) - aff_dim(S \<inter> T)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6297 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6298 | obtain a where a: "a \<in> S" "a \<in> T" using assms by force | 
| 67399 | 6299 | have aff: "affine ((+) (-a) ` S)" "affine ((+) (-a) ` T)" | 
| 69661 | 6300 | using affine_translation [symmetric, of "- a"] assms by (simp_all cong: image_cong_simp) | 
| 67399 | 6301 | have zero: "0 \<in> ((+) (-a) ` S)" "0 \<in> ((+) (-a) ` T)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6302 | using a assms by auto | 
| 69661 | 6303 |   have "{x + y |x y. x \<in> (+) (- a) ` S \<and> y \<in> (+) (- a) ` T} =
 | 
| 6304 |       (+) (- 2 *\<^sub>R a) ` {x + y| x y. x \<in> S \<and> y \<in> T}"
 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6305 | by (force simp: algebra_simps scaleR_2) | 
| 69661 | 6306 | moreover have "(+) (- a) ` S \<inter> (+) (- a) ` T = (+) (- a) ` (S \<inter> T)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6307 | by auto | 
| 69661 | 6308 | ultimately show ?thesis | 
| 6309 | using aff_dim_sums_Int_0 [OF aff zero] aff_dim_translation_eq | |
| 6310 | by (metis (lifting)) | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6311 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6312 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6313 | lemma aff_dim_affine_Int_hyperplane: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6314 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6315 | assumes "affine S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6316 |     shows "aff_dim(S \<inter> {x. a \<bullet> x = b}) =
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6317 |              (if S \<inter> {v. a \<bullet> v = b} = {} then - 1
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6318 |               else if S \<subseteq> {v. a \<bullet> v = b} then aff_dim S
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6319 | else aff_dim S - 1)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6320 | proof (cases "a = 0") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6321 | case True with assms show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6322 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6323 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6324 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6325 |   then have "aff_dim (S \<inter> {x. a \<bullet> x = b}) = aff_dim S - 1"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6326 |             if "x \<in> S" "a \<bullet> x \<noteq> b" and non: "S \<inter> {v. a \<bullet> v = b} \<noteq> {}" for x
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6327 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6328 |     have [simp]: "{x + y| x y. x \<in> S \<and> a \<bullet> y = b} = UNIV"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6329 | using affine_hyperplane_sums_eq_UNIV [OF assms non] that by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6330 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6331 | using aff_dim_sums_Int [OF assms affine_hyperplane non] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6332 | by (simp add: of_nat_diff False) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6333 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6334 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6335 | by (metis (mono_tags, lifting) inf.orderE aff_dim_empty_eq mem_Collect_eq subsetI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6336 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6337 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6338 | lemma aff_dim_lt_full: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6339 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6340 |   shows "aff_dim S < DIM('a) \<longleftrightarrow> (affine hull S \<noteq> UNIV)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6341 | by (metis (no_types) aff_dim_affine_hull aff_dim_le_DIM aff_dim_UNIV affine_hull_UNIV less_le) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6342 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6343 | lemma aff_dim_openin: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6344 | fixes S :: "'a::euclidean_space set" | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6345 |   assumes ope: "openin (top_of_set T) S" and "affine T" "S \<noteq> {}"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6346 | shows "aff_dim S = aff_dim T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6347 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6348 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6349 | proof (rule order_antisym) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6350 | show "aff_dim S \<le> aff_dim T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6351 | by (blast intro: aff_dim_subset [OF openin_imp_subset] ope) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6352 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6353 | obtain a where "a \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6354 |       using \<open>S \<noteq> {}\<close> by blast
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6355 | have "S \<subseteq> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6356 | using ope openin_imp_subset by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6357 | then have "a \<in> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6358 | using \<open>a \<in> S\<close> by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6359 | then have subT': "subspace ((\<lambda>x. - a + x) ` T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6360 | using affine_diffs_subspace \<open>affine T\<close> by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6361 | then obtain B where Bsub: "B \<subseteq> ((\<lambda>x. - a + x) ` T)" and po: "pairwise orthogonal B" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6362 | and eq1: "\<And>x. x \<in> B \<Longrightarrow> norm x = 1" and "independent B" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6363 | and cardB: "card B = dim ((\<lambda>x. - a + x) ` T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6364 | and spanB: "span B = ((\<lambda>x. - a + x) ` T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6365 | by (rule orthonormal_basis_subspace) auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6366 | obtain e where "0 < e" and e: "cball a e \<inter> T \<subseteq> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6367 | by (meson \<open>a \<in> S\<close> openin_contains_cball ope) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6368 | have "aff_dim T = aff_dim ((\<lambda>x. - a + x) ` T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6369 | by (metis aff_dim_translation_eq) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6370 | also have "... = dim ((\<lambda>x. - a + x) ` T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6371 | using aff_dim_subspace subT' by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6372 | also have "... = card B" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6373 | by (simp add: cardB) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6374 | also have "... = card ((\<lambda>x. e *\<^sub>R x) ` B)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6375 | using \<open>0 < e\<close> by (force simp: inj_on_def card_image) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6376 | also have "... \<le> dim ((\<lambda>x. - a + x) ` S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6377 | proof (simp, rule independent_card_le_dim) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6378 | have e': "cball 0 e \<inter> (\<lambda>x. x - a) ` T \<subseteq> (\<lambda>x. x - a) ` S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6379 | using e by (auto simp: dist_norm norm_minus_commute subset_eq) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6380 | have "(\<lambda>x. e *\<^sub>R x) ` B \<subseteq> cball 0 e \<inter> (\<lambda>x. x - a) ` T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6381 | using Bsub \<open>0 < e\<close> eq1 subT' \<open>a \<in> T\<close> by (auto simp: subspace_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6382 | then show "(\<lambda>x. e *\<^sub>R x) ` B \<subseteq> (\<lambda>x. x - a) ` S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6383 | using e' by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6384 | show "independent ((\<lambda>x. e *\<^sub>R x) ` B)" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 6385 | using linear_scale_self \<open>independent B\<close> | 
| 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 6386 | apply (rule linear_independent_injective_image) | 
| 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 6387 | using \<open>0 < e\<close> inj_on_def by fastforce | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6388 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6389 | also have "... = aff_dim S" | 
| 69661 | 6390 | using \<open>a \<in> S\<close> aff_dim_eq_dim hull_inc by (force cong: image_cong_simp) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6391 | finally show "aff_dim T \<le> aff_dim S" . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6392 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6393 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6394 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6395 | lemma dim_openin: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6396 | fixes S :: "'a::euclidean_space set" | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6397 |   assumes ope: "openin (top_of_set T) S" and "subspace T" "S \<noteq> {}"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6398 | shows "dim S = dim T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6399 | proof (rule order_antisym) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6400 | show "dim S \<le> dim T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6401 | by (metis ope dim_subset openin_subset topspace_euclidean_subtopology) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6402 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6403 | have "dim T = aff_dim S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6404 | using aff_dim_openin | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6405 |     by (metis aff_dim_subspace \<open>subspace T\<close> \<open>S \<noteq> {}\<close> ope subspace_affine)
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6406 | also have "... \<le> dim S" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 6407 | by (metis aff_dim_subset aff_dim_subspace dim_span span_superset | 
| 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 6408 | subspace_span) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6409 | finally show "dim T \<le> dim S" by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6410 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6411 | |
| 67968 | 6412 | subsection\<open>Lower-dimensional affine subsets are nowhere dense\<close> | 
| 66641 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6413 | |
| 68607 
67bb59e49834
make theorem, corollary, and proposition %important for HOL-Analysis manual
 immler parents: 
68527diff
changeset | 6414 | proposition dense_complement_subspace: | 
| 66641 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6415 | fixes S :: "'a :: euclidean_space set" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6416 | assumes dim_less: "dim T < dim S" and "subspace S" shows "closure(S - T) = S" | 
| 68607 
67bb59e49834
make theorem, corollary, and proposition %important for HOL-Analysis manual
 immler parents: 
68527diff
changeset | 6417 | proof - | 
| 66641 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6418 | have "closure(S - U) = S" if "dim U < dim S" "U \<subseteq> S" for U | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6419 | proof - | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6420 | have "span U \<subset> span S" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6421 | by (metis neq_iff psubsetI span_eq_dim span_mono that) | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6422 | then obtain a where "a \<noteq> 0" "a \<in> span S" and a: "\<And>y. y \<in> span U \<Longrightarrow> orthogonal a y" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6423 | using orthogonal_to_subspace_exists_gen by metis | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6424 | show ?thesis | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6425 | proof | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6426 | have "closed S" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6427 | by (simp add: \<open>subspace S\<close> closed_subspace) | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6428 | then show "closure (S - U) \<subseteq> S" | 
| 69286 | 6429 | by (simp add: closure_minimal) | 
| 66641 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6430 | show "S \<subseteq> closure (S - U)" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6431 | proof (clarsimp simp: closure_approachable) | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6432 | fix x and e::real | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6433 | assume "x \<in> S" "0 < e" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6434 | show "\<exists>y\<in>S - U. dist y x < e" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6435 | proof (cases "x \<in> U") | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6436 | case True | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6437 | let ?y = "x + (e/2 / norm a) *\<^sub>R a" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6438 | show ?thesis | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6439 | proof | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6440 | show "dist ?y x < e" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6441 | using \<open>0 < e\<close> by (simp add: dist_norm) | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6442 | next | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6443 | have "?y \<in> S" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 6444 | by (metis \<open>a \<in> span S\<close> \<open>x \<in> S\<close> assms(2) span_eq_iff subspace_add subspace_scale) | 
| 66641 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6445 | moreover have "?y \<notin> U" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6446 | proof - | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6447 | have "e/2 / norm a \<noteq> 0" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6448 | using \<open>0 < e\<close> \<open>a \<noteq> 0\<close> by auto | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6449 | then show ?thesis | 
| 68074 | 6450 | by (metis True \<open>a \<noteq> 0\<close> a orthogonal_scaleR orthogonal_self real_vector.scale_eq_0_iff span_add_eq span_base) | 
| 66641 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6451 | qed | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6452 | ultimately show "?y \<in> S - U" by blast | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6453 | qed | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6454 | next | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6455 | case False | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6456 | with \<open>0 < e\<close> \<open>x \<in> S\<close> show ?thesis by force | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6457 | qed | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6458 | qed | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6459 | qed | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6460 | qed | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6461 | moreover have "S - S \<inter> T = S-T" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6462 | by blast | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6463 | moreover have "dim (S \<inter> T) < dim S" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6464 | by (metis dim_less dim_subset inf.cobounded2 inf.orderE inf.strict_boundedE not_le) | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6465 | ultimately show ?thesis | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6466 | by force | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6467 | qed | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6468 | |
| 70136 | 6469 | corollary\<^marker>\<open>tag unimportant\<close> dense_complement_affine: | 
| 66641 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6470 | fixes S :: "'a :: euclidean_space set" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6471 | assumes less: "aff_dim T < aff_dim S" and "affine S" shows "closure(S - T) = S" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6472 | proof (cases "S \<inter> T = {}")
 | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6473 | case True | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6474 | then show ?thesis | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6475 | by (metis Diff_triv affine_hull_eq \<open>affine S\<close> closure_same_affine_hull closure_subset hull_subset subset_antisym) | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6476 | next | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6477 | case False | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6478 | then obtain z where z: "z \<in> S \<inter> T" by blast | 
| 67399 | 6479 | then have "subspace ((+) (- z) ` S)" | 
| 66641 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6480 | by (meson IntD1 affine_diffs_subspace \<open>affine S\<close>) | 
| 67399 | 6481 | moreover have "int (dim ((+) (- z) ` T)) < int (dim ((+) (- z) ` S))" | 
| 69661 | 6482 | thm aff_dim_eq_dim | 
| 6483 | using z less by (simp add: aff_dim_eq_dim_subtract [of z] hull_inc cong: image_cong_simp) | |
| 67399 | 6484 | ultimately have "closure(((+) (- z) ` S) - ((+) (- z) ` T)) = ((+) (- z) ` S)" | 
| 66641 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6485 | by (simp add: dense_complement_subspace) | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6486 | then show ?thesis | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6487 | by (metis closure_translation translation_diff translation_invert) | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6488 | qed | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6489 | |
| 70136 | 6490 | corollary\<^marker>\<open>tag unimportant\<close> dense_complement_openin_affine_hull: | 
| 66641 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6491 | fixes S :: "'a :: euclidean_space set" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6492 | assumes less: "aff_dim T < aff_dim S" | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6493 | and ope: "openin (top_of_set (affine hull S)) S" | 
| 66641 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6494 | shows "closure(S - T) = closure S" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6495 | proof - | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6496 | have "affine hull S - T \<subseteq> affine hull S" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6497 | by blast | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6498 | then have "closure (S \<inter> closure (affine hull S - T)) = closure (S \<inter> (affine hull S - T))" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6499 | by (rule closure_openin_Int_closure [OF ope]) | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6500 | then show ?thesis | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6501 | by (metis Int_Diff aff_dim_affine_hull affine_affine_hull dense_complement_affine hull_subset inf.orderE less) | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6502 | qed | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6503 | |
| 70136 | 6504 | corollary\<^marker>\<open>tag unimportant\<close> dense_complement_convex: | 
| 66641 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6505 | fixes S :: "'a :: euclidean_space set" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6506 | assumes "aff_dim T < aff_dim S" "convex S" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6507 | shows "closure(S - T) = closure S" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6508 | proof | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6509 | show "closure (S - T) \<subseteq> closure S" | 
| 69286 | 6510 | by (simp add: closure_mono) | 
| 66641 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6511 | have "closure (rel_interior S - T) = closure (rel_interior S)" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6512 | apply (rule dense_complement_openin_affine_hull) | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6513 | apply (simp add: assms rel_interior_aff_dim) | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6514 | using \<open>convex S\<close> rel_interior_rel_open rel_open by blast | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6515 | then show "closure S \<subseteq> closure (S - T)" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6516 | by (metis Diff_mono \<open>convex S\<close> closure_mono convex_closure_rel_interior order_refl rel_interior_subset) | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6517 | qed | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6518 | |
| 70136 | 6519 | corollary\<^marker>\<open>tag unimportant\<close> dense_complement_convex_closed: | 
| 66641 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6520 | fixes S :: "'a :: euclidean_space set" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6521 | assumes "aff_dim T < aff_dim S" "convex S" "closed S" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6522 | shows "closure(S - T) = S" | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6523 | by (simp add: assms dense_complement_convex) | 
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6524 | |
| 
ff2e0115fea4
Simplicial complexes and triangulations; Baire Category Theorem
 paulson <lp15@cam.ac.uk> parents: 
66297diff
changeset | 6525 | |
| 70136 | 6526 | subsection\<^marker>\<open>tag unimportant\<close>\<open>Parallel slices, etc\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6527 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6528 | text\<open> If we take a slice out of a set, we can do it perpendicularly, | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6529 | with the normal vector to the slice parallel to the affine hull.\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6530 | |
| 70136 | 6531 | proposition\<^marker>\<open>tag unimportant\<close> affine_parallel_slice: | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6532 | fixes S :: "'a :: euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6533 | assumes "affine S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6534 |       and "S \<inter> {x. a \<bullet> x \<le> b} \<noteq> {}"
 | 
| 69508 | 6535 |       and "\<not> (S \<subseteq> {x. a \<bullet> x \<le> b})"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6536 | obtains a' b' where "a' \<noteq> 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6537 |                    "S \<inter> {x. a' \<bullet> x \<le> b'} = S \<inter> {x. a \<bullet> x \<le> b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6538 |                    "S \<inter> {x. a' \<bullet> x = b'} = S \<inter> {x. a \<bullet> x = b}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6539 | "\<And>w. w \<in> S \<Longrightarrow> (w + a') \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6540 | proof (cases "S \<inter> {x. a \<bullet> x = b} = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6541 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6542 | then obtain u v where "u \<in> S" "v \<in> S" "a \<bullet> u \<le> b" "a \<bullet> v > b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6543 | using assms by (auto simp: not_le) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6544 | define \<eta> where "\<eta> = u + ((b - a \<bullet> u) / (a \<bullet> v - a \<bullet> u)) *\<^sub>R (v - u)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6545 | have "\<eta> \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6546 | by (simp add: \<eta>_def \<open>u \<in> S\<close> \<open>v \<in> S\<close> \<open>affine S\<close> mem_affine_3_minus) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6547 | moreover have "a \<bullet> \<eta> = b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6548 | using \<open>a \<bullet> u \<le> b\<close> \<open>b < a \<bullet> v\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6549 | by (simp add: \<eta>_def algebra_simps) (simp add: field_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6550 | ultimately have False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6551 | using True by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6552 | then show ?thesis .. | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6553 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6554 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6555 | then obtain z where "z \<in> S" and z: "a \<bullet> z = b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6556 | using assms by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6557 | with affine_diffs_subspace [OF \<open>affine S\<close>] | 
| 67399 | 6558 | have sub: "subspace ((+) (- z) ` S)" by blast | 
| 6559 | then have aff: "affine ((+) (- z) ` S)" and span: "span ((+) (- z) ` S) = ((+) (- z) ` S)" | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6560 | by (auto simp: subspace_imp_affine) | 
| 67399 | 6561 | obtain a' a'' where a': "a' \<in> span ((+) (- z) ` S)" and a: "a = a' + a''" | 
| 6562 | and "\<And>w. w \<in> span ((+) (- z) ` S) \<Longrightarrow> orthogonal a'' w" | |
| 69661 | 6563 | using orthogonal_subspace_decomp_exists [of "(+) (- z) ` S" "a"] by metis | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6564 | then have "\<And>w. w \<in> S \<Longrightarrow> a'' \<bullet> (w-z) = 0" | 
| 69661 | 6565 | by (simp add: span_base orthogonal_def) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6566 | then have a'': "\<And>w. w \<in> S \<Longrightarrow> a'' \<bullet> w = (a - a') \<bullet> z" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6567 | by (simp add: a inner_diff_right) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6568 | then have ba'': "\<And>w. w \<in> S \<Longrightarrow> a'' \<bullet> w = b - a' \<bullet> z" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6569 | by (simp add: inner_diff_left z) | 
| 67399 | 6570 | have "\<And>w. w \<in> (+) (- z) ` S \<Longrightarrow> (w + a') \<in> (+) (- z) ` S" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 6571 | by (metis subspace_add a' span_eq_iff sub) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6572 | then have Sclo: "\<And>w. w \<in> S \<Longrightarrow> (w + a') \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6573 | by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6574 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6575 | proof (cases "a' = 0") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6576 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6577 | with a assms True a'' diff_zero less_irrefl show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6578 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6579 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6580 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6581 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6582 | apply (rule_tac a' = "a'" and b' = "a' \<bullet> z" in that) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6583 | apply (auto simp: a ba'' inner_left_distrib False Sclo) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6584 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6585 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6586 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6587 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6588 | lemma diffs_affine_hull_span: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6589 | assumes "a \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6590 |     shows "{x - a |x. x \<in> affine hull S} = span {x - a |x. x \<in> S}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6591 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6592 |   have *: "((\<lambda>x. x - a) ` (S - {a})) = {x. x + a \<in> S} - {0}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6593 | by (auto simp: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6594 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6595 | apply (simp add: affine_hull_span2 [OF assms] *) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6596 | apply (auto simp: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6597 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6598 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6599 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6600 | lemma aff_dim_dim_affine_diffs: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6601 | fixes S :: "'a :: euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6602 | assumes "affine S" "a \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6603 |     shows "aff_dim S = dim {x - a |x. x \<in> S}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6604 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6605 | obtain B where aff: "affine hull B = affine hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6606 | and ind: "\<not> affine_dependent B" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6607 | and card: "of_nat (card B) = aff_dim S + 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6608 | using aff_dim_basis_exists by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6609 |   then have "B \<noteq> {}" using assms
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6610 | by (metis affine_hull_eq_empty ex_in_conv) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6611 | then obtain c where "c \<in> B" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6612 | then have "c \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6613 | by (metis aff affine_hull_eq \<open>affine S\<close> hull_inc) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6614 | have xy: "x - c = y - a \<longleftrightarrow> y = x + 1 *\<^sub>R (a - c)" for x y c and a::'a | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6615 | by (auto simp: algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6616 |   have *: "{x - c |x. x \<in> S} = {x - a |x. x \<in> S}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6617 | apply safe | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6618 | apply (simp_all only: xy) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6619 | using mem_affine_3_minus [OF \<open>affine S\<close>] \<open>a \<in> S\<close> \<open>c \<in> S\<close> apply blast+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6620 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6621 | have affS: "affine hull S = S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6622 | by (simp add: \<open>affine S\<close>) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6623 | have "aff_dim S = of_nat (card B) - 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6624 | using card by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6625 |   also have "... = dim {x - c |x. x \<in> B}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6626 | by (simp add: affine_independent_card_dim_diffs [OF ind \<open>c \<in> B\<close>]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6627 |   also have "... = dim {x - c | x. x \<in> affine hull B}"
 | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 6628 | by (simp add: diffs_affine_hull_span \<open>c \<in> B\<close> dim_span) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6629 |   also have "... = dim {x - a |x. x \<in> S}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6630 | by (simp add: affS aff *) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6631 | finally show ?thesis . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6632 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6633 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6634 | lemma aff_dim_linear_image_le: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6635 | assumes "linear f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6636 | shows "aff_dim(f ` S) \<le> aff_dim S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6637 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6638 | have "aff_dim (f ` T) \<le> aff_dim T" if "affine T" for T | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6639 |   proof (cases "T = {}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6640 | case True then show ?thesis by (simp add: aff_dim_geq) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6641 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6642 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6643 | then obtain a where "a \<in> T" by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6644 |     have 1: "((\<lambda>x. x - f a) ` f ` T) = {x - f a |x. x \<in> f ` T}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6645 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6646 |     have 2: "{x - f a| x. x \<in> f ` T} = f ` {x - a| x. x \<in> T}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6647 | by (force simp: linear_diff [OF assms]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6648 |     have "aff_dim (f ` T) = int (dim {x - f a |x. x \<in> f ` T})"
 | 
| 69661 | 6649 | by (simp add: \<open>a \<in> T\<close> hull_inc aff_dim_eq_dim [of "f a"] 1 cong: image_cong_simp) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6650 |     also have "... = int (dim (f ` {x - a| x. x \<in> T}))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6651 | by (force simp: linear_diff [OF assms] 2) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6652 |     also have "... \<le> int (dim {x - a| x. x \<in> T})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6653 | by (simp add: dim_image_le [OF assms]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6654 | also have "... \<le> aff_dim T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6655 | by (simp add: aff_dim_dim_affine_diffs [symmetric] \<open>a \<in> T\<close> \<open>affine T\<close>) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6656 | finally show ?thesis . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6657 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6658 | then | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6659 | have "aff_dim (f ` (affine hull S)) \<le> aff_dim (affine hull S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6660 | using affine_affine_hull [of S] by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6661 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6662 | using affine_hull_linear_image assms linear_conv_bounded_linear by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6663 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6664 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6665 | lemma aff_dim_injective_linear_image [simp]: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6666 | assumes "linear f" "inj f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6667 | shows "aff_dim (f ` S) = aff_dim S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6668 | proof (rule antisym) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6669 | show "aff_dim (f ` S) \<le> aff_dim S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6670 | by (simp add: aff_dim_linear_image_le assms(1)) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6671 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6672 | obtain g where "linear g" "g \<circ> f = id" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 6673 | using assms(1) assms(2) linear_injective_left_inverse by blast | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6674 | then have "aff_dim S \<le> aff_dim(g ` f ` S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6675 | by (simp add: image_comp) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6676 | also have "... \<le> aff_dim (f ` S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6677 | by (simp add: \<open>linear g\<close> aff_dim_linear_image_le) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6678 | finally show "aff_dim S \<le> aff_dim (f ` S)" . | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6679 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6680 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6681 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6682 | lemma choose_affine_subset: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6683 | assumes "affine S" "-1 \<le> d" and dle: "d \<le> aff_dim S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6684 | obtains T where "affine T" "T \<subseteq> S" "aff_dim T = d" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6685 | proof (cases "d = -1 \<or> S={}")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6686 | case True with assms show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6687 | by (metis aff_dim_empty affine_empty bot.extremum that eq_iff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6688 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6689 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6690 | with assms obtain a where "a \<in> S" "0 \<le> d" by auto | 
| 67399 | 6691 | with assms have ss: "subspace ((+) (- a) ` S)" | 
| 69661 | 6692 | by (simp add: affine_diffs_subspace_subtract cong: image_cong_simp) | 
| 67399 | 6693 | have "nat d \<le> dim ((+) (- a) ` S)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6694 | by (metis aff_dim_subspace aff_dim_translation_eq dle nat_int nat_mono ss) | 
| 67399 | 6695 | then obtain T where "subspace T" and Tsb: "T \<subseteq> span ((+) (- a) ` S)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6696 | and Tdim: "dim T = nat d" | 
| 67399 | 6697 | using choose_subspace_of_subspace [of "nat d" "(+) (- a) ` S"] by blast | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6698 | then have "affine T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6699 | using subspace_affine by blast | 
| 67399 | 6700 | then have "affine ((+) a ` T)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6701 | by (metis affine_hull_eq affine_hull_translation) | 
| 67399 | 6702 | moreover have "(+) a ` T \<subseteq> S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6703 | proof - | 
| 67399 | 6704 | have "T \<subseteq> (+) (- a) ` S" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 6705 | by (metis (no_types) span_eq_iff Tsb ss) | 
| 67399 | 6706 | then show "(+) a ` T \<subseteq> S" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6707 | using add_ac by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6708 | qed | 
| 67399 | 6709 | moreover have "aff_dim ((+) a ` T) = d" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6710 | by (simp add: aff_dim_subspace Tdim \<open>0 \<le> d\<close> \<open>subspace T\<close> aff_dim_translation_eq) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6711 | ultimately show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6712 | by (rule that) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6713 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6714 | |
| 69541 | 6715 | subsection\<open>Paracompactness\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6716 | |
| 68607 
67bb59e49834
make theorem, corollary, and proposition %important for HOL-Analysis manual
 immler parents: 
68527diff
changeset | 6717 | proposition paracompact: | 
| 69918 
eddcc7c726f3
new material;' strengthened material; moved proofs out of Function_Topology in order to lessen its dependencies
 paulson <lp15@cam.ac.uk> parents: 
69745diff
changeset | 6718 |   fixes S :: "'a :: {metric_space,second_countable_topology} set"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6719 | assumes "S \<subseteq> \<Union>\<C>" and opC: "\<And>T. T \<in> \<C> \<Longrightarrow> open T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6720 | obtains \<C>' where "S \<subseteq> \<Union> \<C>'" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6721 | and "\<And>U. U \<in> \<C>' \<Longrightarrow> open U \<and> (\<exists>T. T \<in> \<C> \<and> U \<subseteq> T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6722 | and "\<And>x. x \<in> S | 
| 69918 
eddcc7c726f3
new material;' strengthened material; moved proofs out of Function_Topology in order to lessen its dependencies
 paulson <lp15@cam.ac.uk> parents: 
69745diff
changeset | 6723 |                        \<Longrightarrow> \<exists>V. open V \<and> x \<in> V \<and> finite {U. U \<in> \<C>' \<and> (U \<inter> V \<noteq> {})}"
 | 
| 68607 
67bb59e49834
make theorem, corollary, and proposition %important for HOL-Analysis manual
 immler parents: 
68527diff
changeset | 6724 | proof (cases "S = {}")
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6725 | case True with that show ?thesis by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6726 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6727 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6728 | have "\<exists>T U. x \<in> U \<and> open U \<and> closure U \<subseteq> T \<and> T \<in> \<C>" if "x \<in> S" for x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6729 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6730 | obtain T where "x \<in> T" "T \<in> \<C>" "open T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6731 | using assms \<open>x \<in> S\<close> by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6732 | then obtain e where "e > 0" "cball x e \<subseteq> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6733 | by (force simp: open_contains_cball) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6734 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6735 | apply (rule_tac x = T in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6736 | apply (rule_tac x = "ball x e" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6737 | using \<open>T \<in> \<C>\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6738 | apply (simp add: closure_minimal) | 
| 69918 
eddcc7c726f3
new material;' strengthened material; moved proofs out of Function_Topology in order to lessen its dependencies
 paulson <lp15@cam.ac.uk> parents: 
69745diff
changeset | 6739 | using closed_cball closure_minimal by blast | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6740 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6741 | then obtain F G where Gin: "x \<in> G x" and oG: "open (G x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6742 | and clos: "closure (G x) \<subseteq> F x" and Fin: "F x \<in> \<C>" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6743 | if "x \<in> S" for x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6744 | by metis | 
| 69313 | 6745 | then obtain \<F> where "\<F> \<subseteq> G ` S" "countable \<F>" "\<Union>\<F> = \<Union>(G ` S)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6746 | using Lindelof [of "G ` S"] by (metis image_iff) | 
| 69313 | 6747 | then obtain K where K: "K \<subseteq> S" "countable K" and eq: "\<Union>(G ` K) = \<Union>(G ` S)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6748 | by (metis countable_subset_image) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6749 |   with False Gin have "K \<noteq> {}" by force
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6750 | then obtain a :: "nat \<Rightarrow> 'a" where "range a = K" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6751 | by (metis range_from_nat_into \<open>countable K\<close>) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6752 |   then have odif: "\<And>n. open (F (a n) - \<Union>{closure (G (a m)) |m. m < n})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6753 | using \<open>K \<subseteq> S\<close> Fin opC by (fastforce simp add:) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6754 |   let ?C = "range (\<lambda>n. F(a n) - \<Union>{closure(G(a m)) |m. m < n})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6755 | have enum_S: "\<exists>n. x \<in> F(a n) \<and> x \<in> G(a n)" if "x \<in> S" for x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6756 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6757 | have "\<exists>y \<in> K. x \<in> G y" using eq that Gin by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6758 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6759 | using clos K \<open>range a = K\<close> closure_subset by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6760 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6761 | have 1: "S \<subseteq> Union ?C" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6762 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6763 | fix x assume "x \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6764 | define n where "n \<equiv> LEAST n. x \<in> F(a n)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6765 | have n: "x \<in> F(a n)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6766 | using enum_S [OF \<open>x \<in> S\<close>] by (force simp: n_def intro: LeastI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6767 | have notn: "x \<notin> F(a m)" if "m < n" for m | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6768 | using that not_less_Least by (force simp: n_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6769 |     then have "x \<notin> \<Union>{closure (G (a m)) |m. m < n}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6770 | using n \<open>K \<subseteq> S\<close> \<open>range a = K\<close> clos notn by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6771 | with n show "x \<in> Union ?C" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6772 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6773 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6774 |   have 3: "\<exists>V. open V \<and> x \<in> V \<and> finite {U. U \<in> ?C \<and> (U \<inter> V \<noteq> {})}" if "x \<in> S" for x
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6775 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6776 | obtain n where n: "x \<in> F(a n)" "x \<in> G(a n)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6777 | using \<open>x \<in> S\<close> enum_S by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6778 |     have "{U \<in> ?C. U \<inter> G (a n) \<noteq> {}} \<subseteq> (\<lambda>n. F(a n) - \<Union>{closure(G(a m)) |m. m < n}) ` atMost n"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6779 | proof clarsimp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6780 |       fix k  assume "(F (a k) - \<Union>{closure (G (a m)) |m. m < k}) \<inter> G (a n) \<noteq> {}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6781 | then have "k \<le> n" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6782 | by auto (metis closure_subset not_le subsetCE) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6783 |       then show "F (a k) - \<Union>{closure (G (a m)) |m. m < k}
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6784 |                  \<in> (\<lambda>n. F (a n) - \<Union>{closure (G (a m)) |m. m < n}) ` {..n}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6785 | by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6786 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6787 |     moreover have "finite ((\<lambda>n. F(a n) - \<Union>{closure(G(a m)) |m. m < n}) ` atMost n)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6788 | by force | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6789 |     ultimately have *: "finite {U \<in> ?C. U \<inter> G (a n) \<noteq> {}}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6790 | using finite_subset by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6791 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6792 | apply (rule_tac x="G (a n)" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6793 | apply (intro conjI oG n *) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6794 | using \<open>K \<subseteq> S\<close> \<open>range a = K\<close> apply blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6795 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6796 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6797 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6798 | apply (rule that [OF 1 _ 3]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6799 | using Fin \<open>K \<subseteq> S\<close> \<open>range a = K\<close> apply (auto simp: odif) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6800 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6801 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6802 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6803 | corollary paracompact_closedin: | 
| 69918 
eddcc7c726f3
new material;' strengthened material; moved proofs out of Function_Topology in order to lessen its dependencies
 paulson <lp15@cam.ac.uk> parents: 
69745diff
changeset | 6804 |   fixes S :: "'a :: {metric_space,second_countable_topology} set"
 | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6805 | assumes cin: "closedin (top_of_set U) S" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6806 | and oin: "\<And>T. T \<in> \<C> \<Longrightarrow> openin (top_of_set U) T" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6807 | and "S \<subseteq> \<Union>\<C>" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6808 | obtains \<C>' where "S \<subseteq> \<Union> \<C>'" | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6809 | and "\<And>V. V \<in> \<C>' \<Longrightarrow> openin (top_of_set U) V \<and> (\<exists>T. T \<in> \<C> \<and> V \<subseteq> T)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6810 | and "\<And>x. x \<in> U | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6811 | \<Longrightarrow> \<exists>V. openin (top_of_set U) V \<and> x \<in> V \<and> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6812 |                                finite {X. X \<in> \<C>' \<and> (X \<inter> V \<noteq> {})}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6813 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6814 | have "\<exists>Z. open Z \<and> (T = U \<inter> Z)" if "T \<in> \<C>" for T | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6815 | using oin [OF that] by (auto simp: openin_open) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6816 | then obtain F where opF: "open (F T)" and intF: "U \<inter> F T = T" if "T \<in> \<C>" for T | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6817 | by metis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6818 | obtain K where K: "closed K" "U \<inter> K = S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6819 | using cin by (auto simp: closedin_closed) | 
| 69745 | 6820 | have 1: "U \<subseteq> \<Union>(insert (- K) (F ` \<C>))" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6821 | by clarsimp (metis Int_iff Union_iff \<open>U \<inter> K = S\<close> \<open>S \<subseteq> \<Union>\<C>\<close> subsetD intF) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6822 | have 2: "\<And>T. T \<in> insert (- K) (F ` \<C>) \<Longrightarrow> open T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6823 | using \<open>closed K\<close> by (auto simp: opF) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6824 | obtain \<D> where "U \<subseteq> \<Union>\<D>" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6825 | and D1: "\<And>U. U \<in> \<D> \<Longrightarrow> open U \<and> (\<exists>T. T \<in> insert (- K) (F ` \<C>) \<and> U \<subseteq> T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6826 |              and D2: "\<And>x. x \<in> U \<Longrightarrow> \<exists>V. open V \<and> x \<in> V \<and> finite {U \<in> \<D>. U \<inter> V \<noteq> {}}"
 | 
| 69918 
eddcc7c726f3
new material;' strengthened material; moved proofs out of Function_Topology in order to lessen its dependencies
 paulson <lp15@cam.ac.uk> parents: 
69745diff
changeset | 6827 | by (blast intro: paracompact [OF 1 2]) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6828 |   let ?C = "{U \<inter> V |V. V \<in> \<D> \<and> (V \<inter> K \<noteq> {})}"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6829 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6830 |   proof (rule_tac \<C>' = "{U \<inter> V |V. V \<in> \<D> \<and> (V \<inter> K \<noteq> {})}" in that)
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6831 | show "S \<subseteq> \<Union>?C" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6832 | using \<open>U \<inter> K = S\<close> \<open>U \<subseteq> \<Union>\<D>\<close> K by (blast dest!: subsetD) | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6833 | show "\<And>V. V \<in> ?C \<Longrightarrow> openin (top_of_set U) V \<and> (\<exists>T. T \<in> \<C> \<and> V \<subseteq> T)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6834 | using D1 intF by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6835 |     have *: "{X. (\<exists>V. X = U \<inter> V \<and> V \<in> \<D> \<and> V \<inter> K \<noteq> {}) \<and> X \<inter> (U \<inter> V) \<noteq> {}} \<subseteq>
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6836 |              (\<lambda>x. U \<inter> x) ` {U \<in> \<D>. U \<inter> V \<noteq> {}}" for V
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6837 | by blast | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6838 |     show "\<exists>V. openin (top_of_set U) V \<and> x \<in> V \<and> finite {X \<in> ?C. X \<inter> V \<noteq> {}}"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6839 | if "x \<in> U" for x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6840 | using D2 [OF that] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6841 | apply clarify | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6842 | apply (rule_tac x="U \<inter> V" in exI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6843 | apply (auto intro: that finite_subset [OF *]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6844 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6845 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6846 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6847 | |
| 70136 | 6848 | corollary\<^marker>\<open>tag unimportant\<close> paracompact_closed: | 
| 69918 
eddcc7c726f3
new material;' strengthened material; moved proofs out of Function_Topology in order to lessen its dependencies
 paulson <lp15@cam.ac.uk> parents: 
69745diff
changeset | 6849 |   fixes S :: "'a :: {metric_space,second_countable_topology} set"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6850 | assumes "closed S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6851 | and opC: "\<And>T. T \<in> \<C> \<Longrightarrow> open T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6852 | and "S \<subseteq> \<Union>\<C>" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6853 | obtains \<C>' where "S \<subseteq> \<Union>\<C>'" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6854 | and "\<And>U. U \<in> \<C>' \<Longrightarrow> open U \<and> (\<exists>T. T \<in> \<C> \<and> U \<subseteq> T)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6855 | and "\<And>x. \<exists>V. open V \<and> x \<in> V \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6856 |                                finite {U. U \<in> \<C>' \<and> (U \<inter> V \<noteq> {})}"
 | 
| 69918 
eddcc7c726f3
new material;' strengthened material; moved proofs out of Function_Topology in order to lessen its dependencies
 paulson <lp15@cam.ac.uk> parents: 
69745diff
changeset | 6857 | by (rule paracompact_closedin [of UNIV S \<C>]) (auto simp: assms) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6858 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6859 | |
| 70136 | 6860 | subsection\<^marker>\<open>tag unimportant\<close>\<open>Closed-graph characterization of continuity\<close> | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6861 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6862 | lemma continuous_closed_graph_gen: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6863 | fixes T :: "'b::real_normed_vector set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6864 | assumes contf: "continuous_on S f" and fim: "f ` S \<subseteq> T" | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6865 | shows "closedin (top_of_set (S \<times> T)) ((\<lambda>x. Pair x (f x)) ` S)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6866 | proof - | 
| 66884 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 6867 |   have eq: "((\<lambda>x. Pair x (f x)) ` S) =(S \<times> T \<inter> (\<lambda>z. (f \<circ> fst)z - snd z) -` {0})"
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6868 | using fim by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6869 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6870 | apply (subst eq) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6871 | apply (intro continuous_intros continuous_closedin_preimage continuous_on_subset [OF contf]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6872 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6873 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6874 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6875 | lemma continuous_closed_graph_eq: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6876 | fixes f :: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6877 | assumes "compact T" and fim: "f ` S \<subseteq> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6878 | shows "continuous_on S f \<longleftrightarrow> | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6879 | closedin (top_of_set (S \<times> T)) ((\<lambda>x. Pair x (f x)) ` S)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6880 | (is "?lhs = ?rhs") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6881 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6882 | have "?lhs" if ?rhs | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6883 | proof (clarsimp simp add: continuous_on_closed_gen [OF fim]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6884 | fix U | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6885 | assume U: "closedin (top_of_set T) U" | 
| 66884 
c2128ab11f61
Switching to inverse image and constant_on, plus some new material
 paulson <lp15@cam.ac.uk> parents: 
66793diff
changeset | 6886 | have eq: "(S \<inter> f -` U) = fst ` (((\<lambda>x. Pair x (f x)) ` S) \<inter> (S \<times> U))" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6887 | by (force simp: image_iff) | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6888 | show "closedin (top_of_set S) (S \<inter> f -` U)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6889 | by (simp add: U closedin_Int closedin_Times closed_map_fst [OF \<open>compact T\<close>] that eq) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6890 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6891 | with continuous_closed_graph_gen assms show ?thesis by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6892 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6893 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6894 | lemma continuous_closed_graph: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6895 | fixes f :: "'a::topological_space \<Rightarrow> 'b::real_normed_vector" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6896 | assumes "closed S" and contf: "continuous_on S f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6897 | shows "closed ((\<lambda>x. Pair x (f x)) ` S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6898 | apply (rule closedin_closed_trans) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6899 | apply (rule continuous_closed_graph_gen [OF contf subset_UNIV]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6900 | by (simp add: \<open>closed S\<close> closed_Times) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6901 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6902 | lemma continuous_from_closed_graph: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6903 | fixes f :: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6904 | assumes "compact T" and fim: "f ` S \<subseteq> T" and clo: "closed ((\<lambda>x. Pair x (f x)) ` S)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6905 | shows "continuous_on S f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6906 | using fim clo | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6907 | by (auto intro: closed_subset simp: continuous_closed_graph_eq [OF \<open>compact T\<close> fim]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6908 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6909 | lemma continuous_on_Un_local_open: | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6910 | assumes opS: "openin (top_of_set (S \<union> T)) S" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6911 | and opT: "openin (top_of_set (S \<union> T)) T" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6912 | and contf: "continuous_on S f" and contg: "continuous_on T f" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6913 | shows "continuous_on (S \<union> T) f" | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6914 |   using pasting_lemma [of "{S,T}" "top_of_set (S \<union> T)" id euclidean "\<lambda>i. f" f] contf contg opS opT
 | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6915 | by (simp add: subtopology_subtopology) (metis inf.absorb2 openin_imp_subset) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6916 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6917 | lemma continuous_on_cases_local_open: | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6918 | assumes opS: "openin (top_of_set (S \<union> T)) S" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6919 | and opT: "openin (top_of_set (S \<union> T)) T" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6920 | and contf: "continuous_on S f" and contg: "continuous_on T g" | 
| 69508 | 6921 | and fg: "\<And>x. x \<in> S \<and> \<not>P x \<or> x \<in> T \<and> P x \<Longrightarrow> f x = g x" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6922 | shows "continuous_on (S \<union> T) (\<lambda>x. if P x then f x else g x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6923 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6924 | have "\<And>x. x \<in> S \<Longrightarrow> (if P x then f x else g x) = f x" "\<And>x. x \<in> T \<Longrightarrow> (if P x then f x else g x) = g x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6925 | by (simp_all add: fg) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6926 | then have "continuous_on S (\<lambda>x. if P x then f x else g x)" "continuous_on T (\<lambda>x. if P x then f x else g x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6927 | by (simp_all add: contf contg cong: continuous_on_cong) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6928 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6929 | by (rule continuous_on_Un_local_open [OF opS opT]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6930 | qed | 
| 69922 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6931 | |
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6932 | lemma continuous_map_cases_le: | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6933 | assumes contp: "continuous_map X euclideanreal p" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6934 | and contq: "continuous_map X euclideanreal q" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6935 |     and contf: "continuous_map (subtopology X {x. x \<in> topspace X \<and> p x \<le> q x}) Y f"
 | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6936 |     and contg: "continuous_map (subtopology X {x. x \<in> topspace X \<and> q x \<le> p x}) Y g"
 | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6937 | and fg: "\<And>x. \<lbrakk>x \<in> topspace X; p x = q x\<rbrakk> \<Longrightarrow> f x = g x" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6938 | shows "continuous_map X Y (\<lambda>x. if p x \<le> q x then f x else g x)" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6939 | proof - | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6940 |   have "continuous_map X Y (\<lambda>x. if q x - p x \<in> {0..} then f x else g x)"
 | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6941 | proof (rule continuous_map_cases_function) | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6942 | show "continuous_map X euclideanreal (\<lambda>x. q x - p x)" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6943 | by (intro contp contq continuous_intros) | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6944 |     show "continuous_map (subtopology X {x \<in> topspace X. q x - p x \<in> euclideanreal closure_of {0..}}) Y f"
 | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6945 | by (simp add: contf) | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6946 |     show "continuous_map (subtopology X {x \<in> topspace X. q x - p x \<in> euclideanreal closure_of (topspace euclideanreal - {0..})}) Y g"
 | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6947 | by (simp add: contg flip: Compl_eq_Diff_UNIV) | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6948 | qed (auto simp: fg) | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6949 | then show ?thesis | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6950 | by simp | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6951 | qed | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6952 | |
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6953 | lemma continuous_map_cases_lt: | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6954 | assumes contp: "continuous_map X euclideanreal p" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6955 | and contq: "continuous_map X euclideanreal q" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6956 |     and contf: "continuous_map (subtopology X {x. x \<in> topspace X \<and> p x \<le> q x}) Y f"
 | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6957 |     and contg: "continuous_map (subtopology X {x. x \<in> topspace X \<and> q x \<le> p x}) Y g"
 | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6958 | and fg: "\<And>x. \<lbrakk>x \<in> topspace X; p x = q x\<rbrakk> \<Longrightarrow> f x = g x" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6959 | shows "continuous_map X Y (\<lambda>x. if p x < q x then f x else g x)" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6960 | proof - | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6961 |   have "continuous_map X Y (\<lambda>x. if q x - p x \<in> {0<..} then f x else g x)"
 | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6962 | proof (rule continuous_map_cases_function) | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6963 | show "continuous_map X euclideanreal (\<lambda>x. q x - p x)" | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6964 | by (intro contp contq continuous_intros) | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6965 |     show "continuous_map (subtopology X {x \<in> topspace X. q x - p x \<in> euclideanreal closure_of {0<..}}) Y f"
 | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6966 | by (simp add: contf) | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6967 |     show "continuous_map (subtopology X {x \<in> topspace X. q x - p x \<in> euclideanreal closure_of (topspace euclideanreal - {0<..})}) Y g"
 | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6968 | by (simp add: contg flip: Compl_eq_Diff_UNIV) | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6969 | qed (auto simp: fg) | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6970 | then show ?thesis | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6971 | by simp | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6972 | qed | 
| 
4a9167f377b0
new material about topology, etc.; also fixes for yesterday's
 paulson <lp15@cam.ac.uk> parents: 
69918diff
changeset | 6973 | |
| 70136 | 6974 | subsection\<^marker>\<open>tag unimportant\<close>\<open>The union of two collinear segments is another segment\<close> | 
| 6975 | ||
| 6976 | proposition\<^marker>\<open>tag unimportant\<close> in_convex_hull_exchange: | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6977 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6978 | assumes a: "a \<in> convex hull S" and xS: "x \<in> convex hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6979 |   obtains b where "b \<in> S" "x \<in> convex hull (insert a (S - {b}))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6980 | proof (cases "a \<in> S") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6981 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6982 | with xS insert_Diff that show ?thesis by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6983 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6984 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6985 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6986 |   proof (cases "finite S \<and> card S \<le> Suc (DIM('a))")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6987 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6988 | then obtain u where u0: "\<And>i. i \<in> S \<Longrightarrow> 0 \<le> u i" and u1: "sum u S = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6989 | and ua: "(\<Sum>i\<in>S. u i *\<^sub>R i) = a" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6990 | using a by (auto simp: convex_hull_finite) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6991 | obtain v where v0: "\<And>i. i \<in> S \<Longrightarrow> 0 \<le> v i" and v1: "sum v S = 1" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6992 | and vx: "(\<Sum>i\<in>S. v i *\<^sub>R i) = x" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6993 | using True xS by (auto simp: convex_hull_finite) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6994 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6995 | proof (cases "\<exists>b. b \<in> S \<and> v b = 0") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6996 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6997 | then obtain b where b: "b \<in> S" "v b = 0" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6998 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 6999 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7000 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7001 |         have fin: "finite (insert a (S - {b}))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7002 | using sum.infinite v1 by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7003 |         show "x \<in> convex hull insert a (S - {b})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7004 | unfolding convex_hull_finite [OF fin] mem_Collect_eq | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7005 | proof (intro conjI exI ballI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7006 |           have "(\<Sum>x \<in> insert a (S - {b}). if x = a then 0 else v x) =
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7007 |                 (\<Sum>x \<in> S - {b}. if x = a then 0 else v x)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7008 | apply (rule sum.mono_neutral_right) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7009 | using fin by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7010 |           also have "... = (\<Sum>x \<in> S - {b}. v x)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7011 | using b False by (auto intro!: sum.cong split: if_split_asm) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7012 | also have "... = (\<Sum>x\<in>S. v x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7013 | by (metis \<open>v b = 0\<close> diff_zero sum.infinite sum_diff1 u1 zero_neq_one) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7014 |           finally show "(\<Sum>x\<in>insert a (S - {b}). if x = a then 0 else v x) = 1"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7015 | by (simp add: v1) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7016 |           show "\<And>x. x \<in> insert a (S - {b}) \<Longrightarrow> 0 \<le> (if x = a then 0 else v x)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7017 | by (auto simp: v0) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7018 |           have "(\<Sum>x \<in> insert a (S - {b}). (if x = a then 0 else v x) *\<^sub>R x) =
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7019 |                 (\<Sum>x \<in> S - {b}. (if x = a then 0 else v x) *\<^sub>R x)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7020 | apply (rule sum.mono_neutral_right) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7021 | using fin by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7022 |           also have "... = (\<Sum>x \<in> S - {b}. v x *\<^sub>R x)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7023 | using b False by (auto intro!: sum.cong split: if_split_asm) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7024 | also have "... = (\<Sum>x\<in>S. v x *\<^sub>R x)" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 7025 | by (metis (no_types, lifting) b(2) diff_zero fin finite.emptyI finite_Diff2 finite_insert scale_eq_0_iff sum_diff1) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7026 |           finally show "(\<Sum>x\<in>insert a (S - {b}). (if x = a then 0 else v x) *\<^sub>R x) = x"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7027 | by (simp add: vx) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7028 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7029 | qed (rule \<open>b \<in> S\<close>) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7030 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7031 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7032 | have le_Max: "u i / v i \<le> Max ((\<lambda>i. u i / v i) ` S)" if "i \<in> S" for i | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7033 | by (simp add: True that) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7034 | have "Max ((\<lambda>i. u i / v i) ` S) \<in> (\<lambda>i. u i / v i) ` S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7035 | using True v1 by (auto intro: Max_in) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7036 | then obtain b where "b \<in> S" and beq: "Max ((\<lambda>b. u b / v b) ` S) = u b / v b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7037 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7038 | then have "0 \<noteq> u b / v b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7039 | using le_Max beq divide_le_0_iff le_numeral_extra(2) sum_nonpos u1 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7040 | by (metis False eq_iff v0) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7041 | then have "0 < u b" "0 < v b" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7042 | using False \<open>b \<in> S\<close> u0 v0 by force+ | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7043 |       have fin: "finite (insert a (S - {b}))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7044 | using sum.infinite v1 by fastforce | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7045 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7046 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7047 |         show "x \<in> convex hull insert a (S - {b})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7048 | unfolding convex_hull_finite [OF fin] mem_Collect_eq | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7049 | proof (intro conjI exI ballI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7050 |           have "(\<Sum>x \<in> insert a (S - {b}). if x=a then v b / u b else v x - (v b / u b) * u x) =
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7051 |                 v b / u b + (\<Sum>x \<in> S - {b}. v x - (v b / u b) * u x)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7052 | using \<open>a \<notin> S\<close> \<open>b \<in> S\<close> True apply simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7053 | apply (rule sum.cong, auto) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7054 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7055 |           also have "... = v b / u b + (\<Sum>x \<in> S - {b}. v x) - (v b / u b) * (\<Sum>x \<in> S - {b}. u x)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7056 | by (simp add: Groups_Big.sum_subtractf sum_distrib_left) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7057 | also have "... = (\<Sum>x\<in>S. v x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7058 | using \<open>0 < u b\<close> True by (simp add: Groups_Big.sum_diff1 u1 field_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7059 |           finally show "sum (\<lambda>x. if x=a then v b / u b else v x - (v b / u b) * u x) (insert a (S - {b})) = 1"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7060 | by (simp add: v1) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7061 | show "0 \<le> (if i = a then v b / u b else v i - v b / u b * u i)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7062 |             if "i \<in> insert a (S - {b})" for i
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7063 | using \<open>0 < u b\<close> \<open>0 < v b\<close> v0 [of i] le_Max [of i] beq that False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7064 | by (auto simp: field_simps split: if_split_asm) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7065 |           have "(\<Sum>x\<in>insert a (S - {b}). (if x=a then v b / u b else v x - v b / u b * u x) *\<^sub>R x) =
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7066 |                 (v b / u b) *\<^sub>R a + (\<Sum>x\<in>S - {b}. (v x - v b / u b * u x) *\<^sub>R x)"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7067 | using \<open>a \<notin> S\<close> \<open>b \<in> S\<close> True apply simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7068 | apply (rule sum.cong, auto) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7069 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7070 |           also have "... = (v b / u b) *\<^sub>R a + (\<Sum>x \<in> S - {b}. v x *\<^sub>R x) - (v b / u b) *\<^sub>R (\<Sum>x \<in> S - {b}. u x *\<^sub>R x)"
 | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 7071 | by (simp add: Groups_Big.sum_subtractf scaleR_left_diff_distrib sum_distrib_left scale_sum_right) | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7072 | also have "... = (\<Sum>x\<in>S. v x *\<^sub>R x)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7073 | using \<open>0 < u b\<close> True by (simp add: ua vx Groups_Big.sum_diff1 algebra_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7074 | finally | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7075 |           show "(\<Sum>x\<in>insert a (S - {b}). (if x=a then v b / u b else v x - v b / u b * u x) *\<^sub>R x) = x"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7076 | by (simp add: vx) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7077 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7078 | qed (rule \<open>b \<in> S\<close>) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7079 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7080 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7081 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7082 |     obtain T where "finite T" "T \<subseteq> S" and caT: "card T \<le> Suc (DIM('a))" and xT: "x \<in> convex hull T"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7083 | using xS by (auto simp: caratheodory [of S]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7084 | with False obtain b where b: "b \<in> S" "b \<notin> T" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7085 | by (metis antisym subsetI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7086 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7087 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7088 |       show "x \<in> convex hull insert a (S - {b})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7089 | using \<open>T \<subseteq> S\<close> b by (blast intro: subsetD [OF hull_mono xT]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7090 | qed (rule \<open>b \<in> S\<close>) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7091 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7092 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7093 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7094 | lemma convex_hull_exchange_Union: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7095 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7096 | assumes "a \<in> convex hull S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7097 |   shows "convex hull S = (\<Union>b \<in> S. convex hull (insert a (S - {b})))" (is "?lhs = ?rhs")
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7098 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7099 | show "?lhs \<subseteq> ?rhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7100 | by (blast intro: in_convex_hull_exchange [OF assms]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7101 | show "?rhs \<subseteq> ?lhs" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7102 | proof clarify | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7103 | fix x b | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7104 |     assume"b \<in> S" "x \<in> convex hull insert a (S - {b})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7105 | then show "x \<in> convex hull S" if "b \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7106 | by (metis (no_types) that assms order_refl hull_mono hull_redundant insert_Diff_single insert_subset subsetCE) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7107 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7108 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7109 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7110 | lemma Un_closed_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7111 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7112 | assumes "b \<in> closed_segment a c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7113 | shows "closed_segment a b \<union> closed_segment b c = closed_segment a c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7114 | proof (cases "c = a") | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7115 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7116 | with assms show ?thesis by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7117 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7118 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7119 |   with assms have "convex hull {a, b} \<union> convex hull {b, c} = (\<Union>ba\<in>{a, c}. convex hull insert b ({a, c} - {ba}))"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7120 | by (auto simp: insert_Diff_if insert_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7121 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7122 | using convex_hull_exchange_Union | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7123 | by (metis assms segment_convex_hull) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7124 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7125 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7126 | lemma Un_open_segment: | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7127 | fixes a :: "'a::euclidean_space" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7128 | assumes "b \<in> open_segment a c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7129 |   shows "open_segment a b \<union> {b} \<union> open_segment b c = open_segment a c"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7130 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7131 | have b: "b \<in> closed_segment a c" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7132 | by (simp add: assms open_closed_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7133 | have *: "open_segment a c \<subseteq> insert b (open_segment a b \<union> open_segment b c)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7134 |           if "{b,c,a} \<union> open_segment a b \<union> open_segment b c = {c,a} \<union> open_segment a c"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7135 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7136 | have "insert a (insert c (insert b (open_segment a b \<union> open_segment b c))) = insert a (insert c (open_segment a c))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7137 | using that by (simp add: insert_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7138 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7139 | by (metis (no_types) Diff_cancel Diff_eq_empty_iff Diff_insert2 open_segment_def) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7140 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7141 | show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7142 | using Un_closed_segment [OF b] | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7143 | apply (simp add: closed_segment_eq_open) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7144 | apply (rule equalityI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7145 | using assms | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7146 | apply (simp add: b subset_open_segment) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7147 | using * by (simp add: insert_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7148 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7149 | |
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7150 | subsection\<open>Covering an open set by a countable chain of compact sets\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7151 | |
| 68607 
67bb59e49834
make theorem, corollary, and proposition %important for HOL-Analysis manual
 immler parents: 
68527diff
changeset | 7152 | proposition open_Union_compact_subsets: | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7153 | fixes S :: "'a::euclidean_space set" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7154 | assumes "open S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7155 | obtains C where "\<And>n. compact(C n)" "\<And>n. C n \<subseteq> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7156 | "\<And>n. C n \<subseteq> interior(C(Suc n))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7157 | "\<Union>(range C) = S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7158 | "\<And>K. \<lbrakk>compact K; K \<subseteq> S\<rbrakk> \<Longrightarrow> \<exists>N. \<forall>n\<ge>N. K \<subseteq> (C n)" | 
| 68607 
67bb59e49834
make theorem, corollary, and proposition %important for HOL-Analysis manual
 immler parents: 
68527diff
changeset | 7159 | proof (cases "S = {}")
 | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7160 | case True | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7161 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7162 |     by (rule_tac C = "\<lambda>n. {}" in that) auto
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7163 | next | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7164 | case False | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7165 | then obtain a where "a \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7166 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7167 |   let ?C = "\<lambda>n. cball a (real n) - (\<Union>x \<in> -S. \<Union>e \<in> ball 0 (1 / real(Suc n)). {x + e})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7168 | have "\<exists>N. \<forall>n\<ge>N. K \<subseteq> (f n)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7169 | if "\<And>n. compact(f n)" and sub_int: "\<And>n. f n \<subseteq> interior (f(Suc n))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7170 | and eq: "\<Union>(range f) = S" and "compact K" "K \<subseteq> S" for f K | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7171 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7172 | have *: "\<forall>n. f n \<subseteq> (\<Union>n. interior (f n))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7173 | by (meson Sup_upper2 UNIV_I \<open>\<And>n. f n \<subseteq> interior (f (Suc n))\<close> image_iff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7174 | have mono: "\<And>m n. m \<le> n \<Longrightarrow>f m \<subseteq> f n" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7175 | by (meson dual_order.trans interior_subset lift_Suc_mono_le sub_int) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7176 | obtain I where "finite I" and I: "K \<subseteq> (\<Union>i\<in>I. interior (f i))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7177 | proof (rule compactE_image [OF \<open>compact K\<close>]) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7178 | show "K \<subseteq> (\<Union>n. interior (f n))" | 
| 69313 | 7179 | using \<open>K \<subseteq> S\<close> \<open>\<Union>(f ` UNIV) = S\<close> * by blast | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7180 | qed auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7181 |     { fix n
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7182 | assume n: "Max I \<le> n" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7183 | have "(\<Union>i\<in>I. interior (f i)) \<subseteq> f n" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7184 | by (rule UN_least) (meson dual_order.trans interior_subset mono I Max_ge [OF \<open>finite I\<close>] n) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7185 | then have "K \<subseteq> f n" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7186 | using I by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7187 | } | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7188 | then show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7189 | by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7190 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7191 | moreover have "\<exists>f. (\<forall>n. compact(f n)) \<and> (\<forall>n. (f n) \<subseteq> S) \<and> (\<forall>n. (f n) \<subseteq> interior(f(Suc n))) \<and> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7192 | ((\<Union>(range f) = S))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7193 | proof (intro exI conjI allI) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7194 | show "\<And>n. compact (?C n)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7195 | by (auto simp: compact_diff open_sums) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7196 | show "\<And>n. ?C n \<subseteq> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7197 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7198 | show "?C n \<subseteq> interior (?C (Suc n))" for n | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7199 | proof (simp add: interior_diff, rule Diff_mono) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7200 | show "cball a (real n) \<subseteq> ball a (1 + real n)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7201 | by (simp add: cball_subset_ball_iff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7202 |       have cl: "closed (\<Union>x\<in>- S. \<Union>e\<in>cball 0 (1 / (2 + real n)). {x + e})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7203 | using assms by (auto intro: closed_compact_sums) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7204 |       have "closure (\<Union>x\<in>- S. \<Union>y\<in>ball 0 (1 / (2 + real n)). {x + y})
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7205 |             \<subseteq> (\<Union>x \<in> -S. \<Union>e \<in> cball 0 (1 / (2 + real n)). {x + e})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7206 | by (intro closure_minimal UN_mono ball_subset_cball order_refl cl) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7207 |       also have "... \<subseteq> (\<Union>x \<in> -S. \<Union>y\<in>ball 0 (1 / (1 + real n)). {x + y})"
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7208 | apply (intro UN_mono order_refl) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7209 | apply (simp add: cball_subset_ball_iff divide_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7210 | done | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7211 |       finally show "closure (\<Union>x\<in>- S. \<Union>y\<in>ball 0 (1 / (2 + real n)). {x + y})
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7212 |                     \<subseteq> (\<Union>x \<in> -S. \<Union>y\<in>ball 0 (1 / (1 + real n)). {x + y})" .
 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7213 | qed | 
| 69325 | 7214 | have "S \<subseteq> \<Union> (range ?C)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7215 | proof | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7216 | fix x | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7217 | assume x: "x \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7218 | then obtain e where "e > 0" and e: "ball x e \<subseteq> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7219 | using assms open_contains_ball by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7220 | then obtain N1 where "N1 > 0" and N1: "real N1 > 1/e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7221 | using reals_Archimedean2 | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7222 | by (metis divide_less_0_iff less_eq_real_def neq0_conv not_le of_nat_0 of_nat_1 of_nat_less_0_iff) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7223 | obtain N2 where N2: "norm(x - a) \<le> real N2" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7224 | by (meson real_arch_simple) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7225 | have N12: "inverse((N1 + N2) + 1) \<le> inverse(N1)" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7226 | using \<open>N1 > 0\<close> by (auto simp: divide_simps) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7227 | have "x \<noteq> y + z" if "y \<notin> S" "norm z < 1 / (1 + (real N1 + real N2))" for y z | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7228 | proof - | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7229 | have "e * real N1 < e * (1 + (real N1 + real N2))" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7230 | by (simp add: \<open>0 < e\<close>) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7231 | then have "1 / (1 + (real N1 + real N2)) < e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7232 | using N1 \<open>e > 0\<close> | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7233 | by (metis divide_less_eq less_trans mult.commute of_nat_add of_nat_less_0_iff of_nat_Suc) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7234 | then have "x - z \<in> ball x e" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7235 | using that by simp | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7236 | then have "x - z \<in> S" | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7237 | using e by blast | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7238 | with that show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7239 | by auto | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7240 | qed | 
| 69325 | 7241 | with N2 show "x \<in> \<Union> (range ?C)" | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7242 | by (rule_tac a = "N1+N2" in UN_I) (auto simp: dist_norm norm_minus_commute) | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7243 | qed | 
| 69325 | 7244 | then show "\<Union> (range ?C) = S" by auto | 
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7245 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7246 | ultimately show ?thesis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7247 | using that by metis | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7248 | qed | 
| 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7249 | |
| 67986 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7250 | |
| 69272 | 7251 | subsection\<open>Orthogonal complement\<close> | 
| 67986 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7252 | |
| 70136 | 7253 | definition\<^marker>\<open>tag important\<close> orthogonal_comp ("_\<^sup>\<bottom>" [80] 80)
 | 
| 67986 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7254 |   where "orthogonal_comp W \<equiv> {x. \<forall>y \<in> W. orthogonal y x}"
 | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7255 | |
| 69541 | 7256 | proposition subspace_orthogonal_comp: "subspace (W\<^sup>\<bottom>)" | 
| 67986 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7257 | unfolding subspace_def orthogonal_comp_def orthogonal_def | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7258 | by (auto simp: inner_right_distrib) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7259 | |
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7260 | lemma orthogonal_comp_anti_mono: | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7261 | assumes "A \<subseteq> B" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7262 | shows "B\<^sup>\<bottom> \<subseteq> A\<^sup>\<bottom>" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7263 | proof | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7264 | fix x assume x: "x \<in> B\<^sup>\<bottom>" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7265 | show "x \<in> orthogonal_comp A" using x unfolding orthogonal_comp_def | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7266 | by (simp add: orthogonal_def, metis assms in_mono) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7267 | qed | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7268 | |
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7269 | lemma orthogonal_comp_null [simp]: "{0}\<^sup>\<bottom> = UNIV"
 | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7270 | by (auto simp: orthogonal_comp_def orthogonal_def) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7271 | |
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7272 | lemma orthogonal_comp_UNIV [simp]: "UNIV\<^sup>\<bottom> = {0}"
 | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7273 | unfolding orthogonal_comp_def orthogonal_def | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7274 | by auto (use inner_eq_zero_iff in blast) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7275 | |
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7276 | lemma orthogonal_comp_subset: "U \<subseteq> U\<^sup>\<bottom>\<^sup>\<bottom>" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7277 | by (auto simp: orthogonal_comp_def orthogonal_def inner_commute) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7278 | |
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7279 | lemma subspace_sum_minimal: | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7280 | assumes "S \<subseteq> U" "T \<subseteq> U" "subspace U" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7281 | shows "S + T \<subseteq> U" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7282 | proof | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7283 | fix x | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7284 | assume "x \<in> S + T" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7285 | then obtain xs xt where "xs \<in> S" "xt \<in> T" "x = xs+xt" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7286 | by (meson set_plus_elim) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7287 | then show "x \<in> U" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7288 | by (meson assms subsetCE subspace_add) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7289 | qed | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7290 | |
| 69541 | 7291 | proposition subspace_sum_orthogonal_comp: | 
| 67986 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7292 | fixes U :: "'a :: euclidean_space set" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7293 | assumes "subspace U" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7294 | shows "U + U\<^sup>\<bottom> = UNIV" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7295 | proof - | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7296 | obtain B where "B \<subseteq> U" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7297 | and ortho: "pairwise orthogonal B" "\<And>x. x \<in> B \<Longrightarrow> norm x = 1" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7298 | and "independent B" "card B = dim U" "span B = U" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7299 | using orthonormal_basis_subspace [OF assms] by metis | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7300 | then have "finite B" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7301 | by (simp add: indep_card_eq_dim_span) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7302 | have *: "\<forall>x\<in>B. \<forall>y\<in>B. x \<bullet> y = (if x=y then 1 else 0)" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7303 | using ortho norm_eq_1 by (auto simp: orthogonal_def pairwise_def) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7304 |   { fix v
 | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7305 | let ?u = "\<Sum>b\<in>B. (v \<bullet> b) *\<^sub>R b" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7306 | have "v = ?u + (v - ?u)" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7307 | by simp | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7308 | moreover have "?u \<in> U" | 
| 68074 | 7309 | by (metis (no_types, lifting) \<open>span B = U\<close> assms subspace_sum span_base span_mul) | 
| 67986 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7310 | moreover have "(v - ?u) \<in> U\<^sup>\<bottom>" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7311 | proof (clarsimp simp: orthogonal_comp_def orthogonal_def) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7312 | fix y | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7313 | assume "y \<in> U" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7314 | with \<open>span B = U\<close> span_finite [OF \<open>finite B\<close>] | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7315 | obtain u where u: "y = (\<Sum>b\<in>B. u b *\<^sub>R b)" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7316 | by auto | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7317 | have "b \<bullet> (v - ?u) = 0" if "b \<in> B" for b | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7318 | using that \<open>finite B\<close> | 
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
68796diff
changeset | 7319 | by (simp add: * algebra_simps inner_sum_right if_distrib [of "(*)v" for v] inner_commute cong: if_cong) | 
| 67986 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7320 | then show "y \<bullet> (v - ?u) = 0" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7321 | by (simp add: u inner_sum_left) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7322 | qed | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7323 | ultimately have "v \<in> U + U\<^sup>\<bottom>" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7324 | using set_plus_intro by fastforce | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7325 | } then show ?thesis | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7326 | by auto | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7327 | qed | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7328 | |
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7329 | lemma orthogonal_Int_0: | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7330 | assumes "subspace U" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7331 |   shows "U \<inter> U\<^sup>\<bottom> = {0}"
 | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7332 | using orthogonal_comp_def orthogonal_self | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7333 | by (force simp: assms subspace_0 subspace_orthogonal_comp) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7334 | |
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7335 | lemma orthogonal_comp_self: | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7336 | fixes U :: "'a :: euclidean_space set" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7337 | assumes "subspace U" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7338 | shows "U\<^sup>\<bottom>\<^sup>\<bottom> = U" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7339 | proof | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7340 | have ssU': "subspace (U\<^sup>\<bottom>)" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7341 | by (simp add: subspace_orthogonal_comp) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7342 | have "u \<in> U" if "u \<in> U\<^sup>\<bottom>\<^sup>\<bottom>" for u | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7343 | proof - | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7344 | obtain v w where "u = v+w" "v \<in> U" "w \<in> U\<^sup>\<bottom>" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7345 | using subspace_sum_orthogonal_comp [OF assms] set_plus_elim by blast | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7346 | then have "u-v \<in> U\<^sup>\<bottom>" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7347 | by simp | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7348 | moreover have "v \<in> U\<^sup>\<bottom>\<^sup>\<bottom>" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7349 | using \<open>v \<in> U\<close> orthogonal_comp_subset by blast | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7350 | then have "u-v \<in> U\<^sup>\<bottom>\<^sup>\<bottom>" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7351 | by (simp add: subspace_diff subspace_orthogonal_comp that) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7352 | ultimately have "u-v = 0" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7353 | using orthogonal_Int_0 ssU' by blast | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7354 | with \<open>v \<in> U\<close> show ?thesis | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7355 | by auto | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7356 | qed | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7357 | then show "U\<^sup>\<bottom>\<^sup>\<bottom> \<subseteq> U" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7358 | by auto | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7359 | qed (use orthogonal_comp_subset in auto) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7360 | |
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7361 | lemma ker_orthogonal_comp_adjoint: | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7362 | fixes f :: "'m::euclidean_space \<Rightarrow> 'n::euclidean_space" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7363 | assumes "linear f" | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7364 |   shows "f -` {0} =  (range (adjoint f))\<^sup>\<bottom>"
 | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7365 | apply (auto simp: orthogonal_comp_def orthogonal_def) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7366 | apply (simp add: adjoint_works assms(1) inner_commute) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7367 | by (metis adjoint_works all_zero_iff assms(1) inner_commute) | 
| 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7368 | |
| 70136 | 7369 | subsection\<^marker>\<open>tag unimportant\<close> \<open>A non-injective linear function maps into a hyperplane.\<close> | 
| 67989 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7370 | |
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7371 | lemma linear_surj_adj_imp_inj: | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7372 | fixes f :: "'m::euclidean_space \<Rightarrow> 'n::euclidean_space" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7373 | assumes "linear f" "surj (adjoint f)" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7374 | shows "inj f" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7375 | proof - | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7376 | have "\<exists>x. y = adjoint f x" for y | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7377 | using assms by (simp add: surjD) | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7378 | then show "inj f" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7379 | using assms unfolding inj_on_def image_def | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7380 | by (metis (no_types) adjoint_works euclidean_eqI) | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7381 | qed | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7382 | |
| 70138 | 7383 | \<comment> \<open>\<^url>\<open>https://mathonline.wikidot.com/injectivity-and-surjectivity-of-the-adjoint-of-a-linear-map\<close>\<close> | 
| 67989 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7384 | lemma surj_adjoint_iff_inj [simp]: | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7385 | fixes f :: "'m::euclidean_space \<Rightarrow> 'n::euclidean_space" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7386 | assumes "linear f" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7387 | shows "surj (adjoint f) \<longleftrightarrow> inj f" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7388 | proof | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7389 | assume "surj (adjoint f)" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7390 | then show "inj f" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7391 | by (simp add: assms linear_surj_adj_imp_inj) | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7392 | next | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7393 | assume "inj f" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7394 |   have "f -` {0} = {0}"
 | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7395 | using assms \<open>inj f\<close> linear_0 linear_injective_0 by fastforce | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7396 |   moreover have "f -` {0} = range (adjoint f)\<^sup>\<bottom>"
 | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7397 | by (intro ker_orthogonal_comp_adjoint assms) | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7398 | ultimately have "range (adjoint f)\<^sup>\<bottom>\<^sup>\<bottom> = UNIV" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7399 | by (metis orthogonal_comp_null) | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7400 | then show "surj (adjoint f)" | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 7401 | using adjoint_linear \<open>linear f\<close> | 
| 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 7402 | by (subst (asm) orthogonal_comp_self) | 
| 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 7403 | (simp add: adjoint_linear linear_subspace_image) | 
| 67989 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7404 | qed | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7405 | |
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7406 | lemma inj_adjoint_iff_surj [simp]: | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7407 | fixes f :: "'m::euclidean_space \<Rightarrow> 'n::euclidean_space" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7408 | assumes "linear f" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7409 | shows "inj (adjoint f) \<longleftrightarrow> surj f" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7410 | proof | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7411 | assume "inj (adjoint f)" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7412 |   have "(adjoint f) -` {0} = {0}"
 | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7413 | by (metis \<open>inj (adjoint f)\<close> adjoint_linear assms surj_adjoint_iff_inj ker_orthogonal_comp_adjoint orthogonal_comp_UNIV) | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7414 |   then have "(range(f))\<^sup>\<bottom> = {0}"
 | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7415 | by (metis (no_types, hide_lams) adjoint_adjoint adjoint_linear assms ker_orthogonal_comp_adjoint set_zero) | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7416 | then show "surj f" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7417 | by (metis \<open>inj (adjoint f)\<close> adjoint_adjoint adjoint_linear assms surj_adjoint_iff_inj) | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7418 | next | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7419 | assume "surj f" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7420 |   then have "range f = (adjoint f -` {0})\<^sup>\<bottom>"
 | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7421 | by (simp add: adjoint_adjoint adjoint_linear assms ker_orthogonal_comp_adjoint) | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7422 |   then have "{0} = adjoint f -` {0}"
 | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7423 | using \<open>surj f\<close> adjoint_adjoint adjoint_linear assms ker_orthogonal_comp_adjoint by force | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7424 | then show "inj (adjoint f)" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7425 | by (simp add: \<open>surj f\<close> adjoint_adjoint adjoint_linear assms linear_surj_adj_imp_inj) | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7426 | qed | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7427 | |
| 69541 | 7428 | lemma linear_singular_into_hyperplane: | 
| 67989 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7429 | fixes f :: "'n::euclidean_space \<Rightarrow> 'n" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7430 | assumes "linear f" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7431 | shows "\<not> inj f \<longleftrightarrow> (\<exists>a. a \<noteq> 0 \<and> (\<forall>x. a \<bullet> f x = 0))" (is "_ = ?rhs") | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7432 | proof | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7433 | assume "\<not>inj f" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7434 | then show ?rhs | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7435 | using all_zero_iff | 
| 68072 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 7436 | by (metis (no_types, hide_lams) adjoint_clauses(2) adjoint_linear assms | 
| 
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
 immler parents: 
67990diff
changeset | 7437 | linear_injective_0 linear_injective_imp_surjective linear_surj_adj_imp_inj) | 
| 67989 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7438 | next | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7439 | assume ?rhs | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7440 | then show "\<not>inj f" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7441 | by (metis assms linear_injective_isomorphism all_zero_iff) | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7442 | qed | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7443 | |
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7444 | lemma linear_singular_image_hyperplane: | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7445 | fixes f :: "'n::euclidean_space \<Rightarrow> 'n" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7446 | assumes "linear f" "\<not>inj f" | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7447 |   obtains a where "a \<noteq> 0" "\<And>S. f ` S \<subseteq> {x. a \<bullet> x = 0}"
 | 
| 
706f86afff43
more results about measure and negligibility
 paulson <lp15@cam.ac.uk> parents: 
67986diff
changeset | 7448 | using assms by (fastforce simp add: linear_singular_into_hyperplane) | 
| 67986 
b65c4a6a015e
quite a few more results about negligibility, etc., and a bit of tidying up
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 7449 | |
| 66289 
2562f151541c
Divided Convex_Euclidean_Space.thy in half, creating new theory Starlike
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 7450 | end |