src/HOL/Analysis/Convex.thy
author wenzelm
Wed, 12 Mar 2025 11:39:00 +0100
changeset 82265 4b875a4c83b0
parent 80654 10c712405854
child 82485 12fe1e2b87e4
permissions -rw-r--r--
update for release;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
70086
72c52a897de2 First tranche of the Homology development: Simplices
paulson <lp15@cam.ac.uk>
parents: 69802
diff changeset
     1
(* Title:      HOL/Analysis/Convex.thy
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
     2
   Author:     L C Paulson, University of Cambridge
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
     3
   Author:     Robert Himmelmann, TU Muenchen
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
     4
   Author:     Bogdan Grechuk, University of Edinburgh
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
     5
   Author:     Armin Heller, TU Muenchen
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
     6
   Author:     Johannes Hoelzl, TU Muenchen
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
     7
*)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
     8
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
     9
section \<open>Convex Sets and Functions\<close>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    10
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    11
theory Convex
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    12
imports
79583
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
    13
  Affine  "HOL-Library.Set_Algebras"  "HOL-Library.FuncSet"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    14
begin
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    15
71044
nipkow
parents: 71040
diff changeset
    16
subsection \<open>Convex Sets\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    17
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
    18
definition\<^marker>\<open>tag important\<close> convex :: "'a::real_vector set \<Rightarrow> bool"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    19
  where "convex s \<longleftrightarrow> (\<forall>x\<in>s. \<forall>y\<in>s. \<forall>u\<ge>0. \<forall>v\<ge>0. u + v = 1 \<longrightarrow> u *\<^sub>R x + v *\<^sub>R y \<in> s)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    20
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    21
lemma convexI:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    22
  assumes "\<And>x y u v. x \<in> s \<Longrightarrow> y \<in> s \<Longrightarrow> 0 \<le> u \<Longrightarrow> 0 \<le> v \<Longrightarrow> u + v = 1 \<Longrightarrow> u *\<^sub>R x + v *\<^sub>R y \<in> s"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    23
  shows "convex s"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
    24
  by (simp add: assms convex_def)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    25
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    26
lemma convexD:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    27
  assumes "convex s" and "x \<in> s" and "y \<in> s" and "0 \<le> u" and "0 \<le> v" and "u + v = 1"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    28
  shows "u *\<^sub>R x + v *\<^sub>R y \<in> s"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    29
  using assms unfolding convex_def by fast
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    30
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    31
lemma convex_alt: "convex s \<longleftrightarrow> (\<forall>x\<in>s. \<forall>y\<in>s. \<forall>u. 0 \<le> u \<and> u \<le> 1 \<longrightarrow> ((1 - u) *\<^sub>R x + u *\<^sub>R y) \<in> s)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    32
  (is "_ \<longleftrightarrow> ?alt")
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
    33
  by (smt (verit) convexD convexI)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    34
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    35
lemma convexD_alt:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    36
  assumes "convex s" "a \<in> s" "b \<in> s" "0 \<le> u" "u \<le> 1"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    37
  shows "((1 - u) *\<^sub>R a + u *\<^sub>R b) \<in> s"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    38
  using assms unfolding convex_alt by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    39
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    40
lemma mem_convex_alt:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    41
  assumes "convex S" "x \<in> S" "y \<in> S" "u \<ge> 0" "v \<ge> 0" "u + v > 0"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    42
  shows "((u/(u+v)) *\<^sub>R x + (v/(u+v)) *\<^sub>R y) \<in> S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    43
  using assms
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
    44
  by (simp add: convex_def zero_le_divide_iff add_divide_distrib [symmetric])
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    45
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    46
lemma convex_empty[intro,simp]: "convex {}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    47
  unfolding convex_def by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    48
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    49
lemma convex_singleton[intro,simp]: "convex {a}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    50
  unfolding convex_def by (auto simp: scaleR_left_distrib[symmetric])
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    51
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    52
lemma convex_UNIV[intro,simp]: "convex UNIV"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    53
  unfolding convex_def by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    54
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    55
lemma convex_Inter: "(\<And>s. s\<in>f \<Longrightarrow> convex s) \<Longrightarrow> convex(\<Inter>f)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    56
  unfolding convex_def by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    57
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    58
lemma convex_Int: "convex s \<Longrightarrow> convex t \<Longrightarrow> convex (s \<inter> t)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    59
  unfolding convex_def by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    60
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    61
lemma convex_INT: "(\<And>i. i \<in> A \<Longrightarrow> convex (B i)) \<Longrightarrow> convex (\<Inter>i\<in>A. B i)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    62
  unfolding convex_def by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    63
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    64
lemma convex_Times: "convex s \<Longrightarrow> convex t \<Longrightarrow> convex (s \<times> t)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    65
  unfolding convex_def by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    66
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    67
lemma convex_halfspace_le: "convex {x. inner a x \<le> b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    68
  unfolding convex_def
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    69
  by (auto simp: inner_add intro!: convex_bound_le)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    70
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    71
lemma convex_halfspace_ge: "convex {x. inner a x \<ge> b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    72
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    73
  have *: "{x. inner a x \<ge> b} = {x. inner (-a) x \<le> -b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    74
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    75
  show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    76
    unfolding * using convex_halfspace_le[of "-a" "-b"] by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    77
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    78
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    79
lemma convex_halfspace_abs_le: "convex {x. \<bar>inner a x\<bar> \<le> b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    80
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    81
  have *: "{x. \<bar>inner a x\<bar> \<le> b} = {x. inner a x \<le> b} \<inter> {x. -b \<le> inner a x}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    82
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    83
  show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    84
    unfolding * by (simp add: convex_Int convex_halfspace_ge convex_halfspace_le)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    85
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    86
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    87
lemma convex_hyperplane: "convex {x. inner a x = b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    88
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    89
  have *: "{x. inner a x = b} = {x. inner a x \<le> b} \<inter> {x. inner a x \<ge> b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    90
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    91
  show ?thesis using convex_halfspace_le convex_halfspace_ge
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    92
    by (auto intro!: convex_Int simp: *)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    93
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    94
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    95
lemma convex_halfspace_lt: "convex {x. inner a x < b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    96
  unfolding convex_def
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    97
  by (auto simp: convex_bound_lt inner_add)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    98
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
    99
lemma convex_halfspace_gt: "convex {x. inner a x > b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   100
  using convex_halfspace_lt[of "-a" "-b"] by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   101
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   102
lemma convex_halfspace_Re_ge: "convex {x. Re x \<ge> b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   103
  using convex_halfspace_ge[of b "1::complex"] by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   104
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   105
lemma convex_halfspace_Re_le: "convex {x. Re x \<le> b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   106
  using convex_halfspace_le[of "1::complex" b] by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   107
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   108
lemma convex_halfspace_Im_ge: "convex {x. Im x \<ge> b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   109
  using convex_halfspace_ge[of b \<i>] by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   110
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   111
lemma convex_halfspace_Im_le: "convex {x. Im x \<le> b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   112
  using convex_halfspace_le[of \<i> b] by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   113
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   114
lemma convex_halfspace_Re_gt: "convex {x. Re x > b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   115
  using convex_halfspace_gt[of b "1::complex"] by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   116
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   117
lemma convex_halfspace_Re_lt: "convex {x. Re x < b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   118
  using convex_halfspace_lt[of "1::complex" b] by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   119
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   120
lemma convex_halfspace_Im_gt: "convex {x. Im x > b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   121
  using convex_halfspace_gt[of b \<i>] by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   122
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   123
lemma convex_halfspace_Im_lt: "convex {x. Im x < b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   124
  using convex_halfspace_lt[of \<i> b] by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   125
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   126
lemma convex_real_interval [iff]:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   127
  fixes a b :: "real"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   128
  shows "convex {a..}" and "convex {..b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   129
    and "convex {a<..}" and "convex {..<b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   130
    and "convex {a..b}" and "convex {a<..b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   131
    and "convex {a..<b}" and "convex {a<..<b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   132
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   133
  have "{a..} = {x. a \<le> inner 1 x}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   134
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   135
  then show 1: "convex {a..}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   136
    by (simp only: convex_halfspace_ge)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   137
  have "{..b} = {x. inner 1 x \<le> b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   138
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   139
  then show 2: "convex {..b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   140
    by (simp only: convex_halfspace_le)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   141
  have "{a<..} = {x. a < inner 1 x}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   142
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   143
  then show 3: "convex {a<..}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   144
    by (simp only: convex_halfspace_gt)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   145
  have "{..<b} = {x. inner 1 x < b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   146
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   147
  then show 4: "convex {..<b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   148
    by (simp only: convex_halfspace_lt)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   149
  have "{a..b} = {a..} \<inter> {..b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   150
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   151
  then show "convex {a..b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   152
    by (simp only: convex_Int 1 2)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   153
  have "{a<..b} = {a<..} \<inter> {..b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   154
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   155
  then show "convex {a<..b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   156
    by (simp only: convex_Int 3 2)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   157
  have "{a..<b} = {a..} \<inter> {..<b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   158
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   159
  then show "convex {a..<b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   160
    by (simp only: convex_Int 1 4)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   161
  have "{a<..<b} = {a<..} \<inter> {..<b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   162
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   163
  then show "convex {a<..<b}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   164
    by (simp only: convex_Int 3 4)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   165
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   166
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   167
lemma convex_Reals: "convex \<real>"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   168
  by (simp add: convex_def scaleR_conv_of_real)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   169
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   170
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
   171
subsection\<^marker>\<open>tag unimportant\<close> \<open>Explicit expressions for convexity in terms of arbitrary sums\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   172
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   173
lemma convex_sum:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   174
  fixes C :: "'a::real_vector set"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   175
  assumes "finite S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   176
    and "convex C"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   177
    and a: "(\<Sum> i \<in> S. a i) = 1" "\<And>i. i \<in> S \<Longrightarrow> a i \<ge> 0"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   178
    and C: "\<And>i. i \<in> S \<Longrightarrow> y i \<in> C"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   179
  shows "(\<Sum> j \<in> S. a j *\<^sub>R y j) \<in> C"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   180
  using \<open>finite S\<close> a C
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   181
proof (induction arbitrary: a set: finite)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   182
  case empty
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   183
  then show ?case by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   184
next
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   185
  case (insert i S) 
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   186
  then have "0 \<le> sum a S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   187
    by (simp add: sum_nonneg)
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   188
  have "a i *\<^sub>R y i + (\<Sum>j\<in>S. a j *\<^sub>R y j) \<in> C"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   189
  proof (cases "sum a S = 0")
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   190
    case True with insert show ?thesis
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   191
      by (simp add: sum_nonneg_eq_0_iff)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   192
  next
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   193
    case False
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   194
    with \<open>0 \<le> sum a S\<close> have "0 < sum a S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   195
      by simp
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   196
    then have "(\<Sum>j\<in>S. (a j / sum a S) *\<^sub>R y j) \<in> C"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   197
      using insert
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   198
      by (simp add: insert.IH flip: sum_divide_distrib)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   199
    with \<open>convex C\<close> insert \<open>0 \<le> sum a S\<close> 
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   200
    have "a i *\<^sub>R y i + sum a S *\<^sub>R (\<Sum>j\<in>S. (a j / sum a S) *\<^sub>R y j) \<in> C"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   201
      by (simp add: convex_def)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   202
    then show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   203
      by (simp add: scaleR_sum_right False)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   204
  qed
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   205
  then show ?case using \<open>finite S\<close> and \<open>i \<notin> S\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   206
    by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   207
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   208
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   209
lemma convex:
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   210
  "convex S \<longleftrightarrow> 
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   211
    (\<forall>(k::nat) u x. (\<forall>i. 1\<le>i \<and> i\<le>k \<longrightarrow> 0 \<le> u i \<and> x i \<in>S) \<and> (sum u {1..k} = 1)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   212
      \<longrightarrow> sum (\<lambda>i. u i *\<^sub>R x i) {1..k} \<in> S)"  
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   213
  (is "?lhs = ?rhs")
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   214
proof
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   215
  show "?lhs \<Longrightarrow> ?rhs"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   216
    by (metis (full_types) atLeastAtMost_iff convex_sum finite_atLeastAtMost)
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   217
  assume *: "\<forall>k u x. (\<forall> i :: nat. 1 \<le> i \<and> i \<le> k \<longrightarrow> 0 \<le> u i \<and> x i \<in> S) \<and> sum u {1..k} = 1
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   218
    \<longrightarrow> (\<Sum>i = 1..k. u i *\<^sub>R (x i :: 'a)) \<in> S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   219
  {
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   220
    fix \<mu> :: real
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   221
    fix x y :: 'a
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   222
    assume xy: "x \<in> S" "y \<in> S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   223
    assume mu: "\<mu> \<ge> 0" "\<mu> \<le> 1"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   224
    let ?u = "\<lambda>i. if (i :: nat) = 1 then \<mu> else 1 - \<mu>"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   225
    let ?x = "\<lambda>i. if (i :: nat) = 1 then x else y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   226
    have "{1 :: nat .. 2} \<inter> - {x. x = 1} = {2}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   227
      by auto
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   228
    then have S: "(\<Sum>j \<in> {1..2}. ?u j *\<^sub>R ?x j) \<in> S"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   229
      using sum.If_cases[of "{(1 :: nat) .. 2}" "\<lambda>x. x = 1" "\<lambda>x. \<mu>" "\<lambda>x. 1 - \<mu>"]
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   230
      using mu xy "*" by auto
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   231
    have grarr: "(\<Sum>j \<in> {Suc (Suc 0)..2}. ?u j *\<^sub>R ?x j) = (1 - \<mu>) *\<^sub>R y"
70097
4005298550a6 The last big tranche of Homology material: invariance of domain; renamings to use generic sum/prod lemmas from their locale
paulson <lp15@cam.ac.uk>
parents: 70086
diff changeset
   232
      using sum.atLeast_Suc_atMost[of "Suc (Suc 0)" 2 "\<lambda> j. (1 - \<mu>) *\<^sub>R y"] by auto
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   233
    with sum.atLeast_Suc_atMost
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   234
    have "(\<Sum>j \<in> {1..2}. ?u j *\<^sub>R ?x j) = \<mu> *\<^sub>R x + (1 - \<mu>) *\<^sub>R y"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   235
      by (smt (verit, best) Suc_1 Suc_eq_plus1 add_0 le_add1)
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   236
    then have "(1 - \<mu>) *\<^sub>R y + \<mu> *\<^sub>R x \<in> S"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   237
      using S by (auto simp: add.commute)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   238
  }
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   239
  then show "convex S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   240
    unfolding convex_alt by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   241
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   242
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   243
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   244
lemma convex_explicit:
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   245
  fixes S :: "'a::real_vector set"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   246
  shows "convex S \<longleftrightarrow>
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   247
    (\<forall>t u. finite t \<and> t \<subseteq> S \<and> (\<forall>x\<in>t. 0 \<le> u x) \<and> sum u t = 1 \<longrightarrow> sum (\<lambda>x. u x *\<^sub>R x) t \<in> S)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   248
proof safe
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   249
  fix t
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   250
  fix u :: "'a \<Rightarrow> real"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   251
  assume "convex S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   252
    and "finite t"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   253
    and "t \<subseteq> S" "\<forall>x\<in>t. 0 \<le> u x" "sum u t = 1"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   254
  then show "(\<Sum>x\<in>t. u x *\<^sub>R x) \<in> S"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   255
    by (simp add: convex_sum subsetD)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   256
next
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   257
  assume *: "\<forall>t. \<forall> u. finite t \<and> t \<subseteq> S \<and> (\<forall>x\<in>t. 0 \<le> u x) \<and>
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   258
    sum u t = 1 \<longrightarrow> (\<Sum>x\<in>t. u x *\<^sub>R x) \<in> S"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   259
  show "convex S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   260
    unfolding convex_alt
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   261
  proof safe
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   262
    fix x y
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   263
    fix \<mu> :: real
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   264
    assume **: "x \<in> S" "y \<in> S" "0 \<le> \<mu>" "\<mu> \<le> 1"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   265
    show "(1 - \<mu>) *\<^sub>R x + \<mu> *\<^sub>R y \<in> S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   266
    proof (cases "x = y")
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   267
      case False
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   268
      then show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   269
        using *[rule_format, of "{x, y}" "\<lambda> z. if z = x then 1 - \<mu> else \<mu>"] **
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   270
        by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   271
    next
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   272
      case True
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   273
      then show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   274
        using *[rule_format, of "{x, y}" "\<lambda> z. 1"] **
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   275
        by (auto simp: field_simps real_vector.scale_left_diff_distrib)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   276
    qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   277
  qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   278
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   279
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   280
lemma convex_finite:
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   281
  assumes "finite S"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   282
  shows "convex S \<longleftrightarrow> (\<forall>u. (\<forall>x\<in>S. 0 \<le> u x) \<and> sum u S = 1 \<longrightarrow> sum (\<lambda>x. u x *\<^sub>R x) S \<in> S)"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   283
       (is "?lhs = ?rhs")
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   284
proof 
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   285
  { have if_distrib_arg: "\<And>P f g x. (if P then f else g) x = (if P then f x else g x)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   286
      by simp
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   287
    fix T :: "'a set" and u :: "'a \<Rightarrow> real"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   288
    assume sum: "\<forall>u. (\<forall>x\<in>S. 0 \<le> u x) \<and> sum u S = 1 \<longrightarrow> (\<Sum>x\<in>S. u x *\<^sub>R x) \<in> S"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   289
    assume *: "\<forall>x\<in>T. 0 \<le> u x" "sum u T = 1"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   290
    assume "T \<subseteq> S"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   291
    then have "S \<inter> T = T" by auto
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   292
    with sum[THEN spec[where x="\<lambda>x. if x\<in>T then u x else 0"]] *
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   293
    have "(\<Sum>x\<in>T. u x *\<^sub>R x) \<in> S"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   294
      by (auto simp: assms sum.If_cases if_distrib if_distrib_arg) }
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   295
  moreover assume ?rhs
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   296
  ultimately show ?lhs
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   297
    unfolding convex_explicit by auto
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   298
qed (auto simp: convex_explicit assms)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   299
71044
nipkow
parents: 71040
diff changeset
   300
subsection \<open>Convex Functions on a Set\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   301
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
   302
definition\<^marker>\<open>tag important\<close> convex_on :: "'a::real_vector set \<Rightarrow> ('a \<Rightarrow> real) \<Rightarrow> bool"
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   303
  where "convex_on S f \<longleftrightarrow> convex S \<and>
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   304
    (\<forall>x\<in>S. \<forall>y\<in>S. \<forall>u\<ge>0. \<forall>v\<ge>0. u + v = 1 \<longrightarrow> f (u *\<^sub>R x + v *\<^sub>R y) \<le> u * f x + v * f y)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   305
74729
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   306
definition\<^marker>\<open>tag important\<close> concave_on :: "'a::real_vector set \<Rightarrow> ('a \<Rightarrow> real) \<Rightarrow> bool"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   307
  where "concave_on S f \<equiv> convex_on S (\<lambda>x. - f x)"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   308
79583
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   309
lemma convex_on_iff_concave: "convex_on S f = concave_on S (\<lambda>x. - f x)"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   310
  by (simp add: concave_on_def)
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   311
74729
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   312
lemma concave_on_iff:
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   313
  "concave_on S f \<longleftrightarrow> convex S \<and>
74729
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   314
    (\<forall>x\<in>S. \<forall>y\<in>S. \<forall>u\<ge>0. \<forall>v\<ge>0. u + v = 1 \<longrightarrow> f (u *\<^sub>R x + v *\<^sub>R y) \<ge> u * f x + v * f y)"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   315
  by (auto simp: concave_on_def convex_on_def algebra_simps)
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   316
79945
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   317
lemma concave_onD:
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   318
  assumes "concave_on A f"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   319
  shows "\<And>t x y. t \<ge> 0 \<Longrightarrow> t \<le> 1 \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow>
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   320
    f ((1 - t) *\<^sub>R x + t *\<^sub>R y) \<ge> (1 - t) * f x + t * f y"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   321
  using assms by (auto simp: concave_on_iff)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   322
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   323
lemma convex_onI [intro?]:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   324
  assumes "\<And>t x y. t > 0 \<Longrightarrow> t < 1 \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   325
    f ((1 - t) *\<^sub>R x + t *\<^sub>R y) \<le> (1 - t) * f x + t * f y"
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   326
    and "convex A"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   327
  shows "convex_on A f"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   328
  unfolding convex_on_def
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   329
  by (smt (verit, del_insts) assms mult_cancel_right1 mult_eq_0_iff scaleR_collapse scaleR_eq_0_iff)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   330
79945
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   331
lemma convex_onD:
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   332
  assumes "convex_on A f"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   333
  shows "\<And>t x y. t \<ge> 0 \<Longrightarrow> t \<le> 1 \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow>
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   334
    f ((1 - t) *\<^sub>R x + t *\<^sub>R y) \<le> (1 - t) * f x + t * f y"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   335
  using assms by (auto simp: convex_on_def)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   336
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   337
lemma convex_on_linorderI [intro?]:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   338
  fixes A :: "('a::{linorder,real_vector}) set"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   339
  assumes "\<And>t x y. t > 0 \<Longrightarrow> t < 1 \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> x < y \<Longrightarrow>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   340
    f ((1 - t) *\<^sub>R x + t *\<^sub>R y) \<le> (1 - t) * f x + t * f y"
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   341
    and "convex A"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   342
  shows "convex_on A f"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   343
  by (smt (verit, best) add.commute assms convex_onI distrib_left linorder_cases mult.commute mult_cancel_left2 scaleR_collapse)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   344
79945
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   345
lemma concave_on_linorderI [intro?]:
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   346
  fixes A :: "('a::{linorder,real_vector}) set"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   347
  assumes "\<And>t x y. t > 0 \<Longrightarrow> t < 1 \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> x < y \<Longrightarrow>
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   348
    f ((1 - t) *\<^sub>R x + t *\<^sub>R y) \<ge> (1 - t) * f x + t * f y"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   349
    and "convex A"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   350
  shows "concave_on A f"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   351
  by (smt (verit) assms concave_on_def convex_on_linorderI mult_minus_right)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   352
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   353
lemma convex_on_imp_convex: "convex_on A f \<Longrightarrow> convex A"
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   354
  by (auto simp: convex_on_def)
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   355
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   356
lemma concave_on_imp_convex: "concave_on A f \<Longrightarrow> convex A"
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   357
  by (simp add: concave_on_def convex_on_imp_convex)
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   358
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   359
lemma convex_onD_Icc:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   360
  assumes "convex_on {x..y} f" "x \<le> (y :: _ :: {real_vector,preorder})"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   361
  shows "\<And>t. t \<ge> 0 \<Longrightarrow> t \<le> 1 \<Longrightarrow>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   362
    f ((1 - t) *\<^sub>R x + t *\<^sub>R y) \<le> (1 - t) * f x + t * f y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   363
  using assms(2) by (intro convex_onD [OF assms(1)]) simp_all
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   364
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   365
lemma convex_on_subset: "\<lbrakk>convex_on T f; S \<subseteq> T; convex S\<rbrakk> \<Longrightarrow> convex_on S f"
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   366
  by (simp add: convex_on_def subset_iff)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   367
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   368
lemma convex_on_add [intro]:
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   369
  assumes "convex_on S f"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   370
    and "convex_on S g"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   371
  shows "convex_on S (\<lambda>x. f x + g x)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   372
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   373
  {
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   374
    fix x y
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   375
    assume "x \<in> S" "y \<in> S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   376
    moreover
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   377
    fix u v :: real
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   378
    assume "0 \<le> u" "0 \<le> v" "u + v = 1"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   379
    ultimately
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   380
    have "f (u *\<^sub>R x + v *\<^sub>R y) + g (u *\<^sub>R x + v *\<^sub>R y) \<le> (u * f x + v * f y) + (u * g x + v * g y)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   381
      using assms unfolding convex_on_def by (auto simp: add_mono)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   382
    then have "f (u *\<^sub>R x + v *\<^sub>R y) + g (u *\<^sub>R x + v *\<^sub>R y) \<le> u * (f x + g x) + v * (f y + g y)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   383
      by (simp add: field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   384
  }
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   385
  with assms show ?thesis
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   386
    unfolding convex_on_def by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   387
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   388
79583
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   389
lemma convex_on_ident: "convex_on S (\<lambda>x. x) \<longleftrightarrow> convex S"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   390
  by (simp add: convex_on_def)
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   391
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   392
lemma concave_on_ident: "concave_on S (\<lambda>x. x) \<longleftrightarrow> convex S"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   393
  by (simp add: concave_on_iff)
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   394
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   395
lemma convex_on_const: "convex_on S (\<lambda>x. a) \<longleftrightarrow> convex S"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   396
  by (simp add: convex_on_def flip: distrib_right)
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   397
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   398
lemma concave_on_const: "concave_on S (\<lambda>x. a) \<longleftrightarrow> convex S"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   399
  by (simp add: concave_on_iff flip: distrib_right)
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   400
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   401
lemma convex_on_diff:
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   402
  assumes "convex_on S f" and "concave_on S g"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   403
  shows "convex_on S (\<lambda>x. f x - g x)"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   404
  using assms concave_on_def convex_on_add by fastforce
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   405
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   406
lemma concave_on_diff:
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   407
  assumes "concave_on S f"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   408
    and "convex_on S g"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   409
  shows "concave_on S (\<lambda>x. f x - g x)"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   410
  using convex_on_diff assms concave_on_def by fastforce
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   411
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   412
lemma concave_on_add:
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   413
  assumes "concave_on S f"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   414
    and "concave_on S g"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   415
  shows "concave_on S (\<lambda>x. f x + g x)"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   416
  using assms convex_on_iff_concave concave_on_diff concave_on_def by fastforce
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   417
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   418
lemma convex_on_mul:
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   419
  fixes S::"real set"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   420
  assumes "convex_on S f" "convex_on S g"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   421
  assumes "mono_on S f" "mono_on S g"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   422
  assumes fty: "f \<in> S \<rightarrow> {0..}" and gty: "g \<in> S \<rightarrow> {0..}"
79945
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   423
  shows "convex_on S (\<lambda>x. f x*g x)"
79583
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   424
proof (intro convex_on_linorderI)
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   425
  show "convex S"
79945
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   426
    using assms convex_on_imp_convex by auto
79583
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   427
  fix t::real and x y
79945
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   428
  assume t: "0 < t" "t < 1" and xy: "x \<in> S" "y \<in> S" "x<y"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   429
  have *: "t*(1-t) * f x * g y + t*(1-t) * f y * g x \<le> t*(1-t) * f x * g x + t*(1-t) * f y * g y"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   430
    using t \<open>mono_on S f\<close> \<open>mono_on S g\<close> xy
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   431
    by (smt (verit, ccfv_SIG) left_diff_distrib mono_onD mult_left_less_imp_less zero_le_mult_iff)
79583
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   432
  have inS: "(1-t)*x + t*y \<in> S"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   433
    using t xy \<open>convex S\<close> by (simp add: convex_alt)
79945
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   434
  then have "f ((1-t)*x + t*y) * g ((1-t)*x + t*y) \<le> ((1-t) * f x + t * f y)*g ((1-t)*x + t*y)"
79583
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   435
    using convex_onD [OF \<open>convex_on S f\<close>, of t x y] t xy fty gty
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   436
    by (intro mult_mono add_nonneg_nonneg) (auto simp: Pi_iff zero_le_mult_iff)
79945
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   437
  also have "\<dots> \<le> ((1-t) * f x + t * f y) * ((1-t)*g x + t*g y)"
79583
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   438
    using convex_onD [OF \<open>convex_on S g\<close>, of t x y] t xy fty gty inS
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   439
    by (intro mult_mono add_nonneg_nonneg) (auto simp: Pi_iff zero_le_mult_iff)
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   440
  also have "\<dots> \<le> (1-t) * (f x*g x) + t * (f y*g y)"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   441
    using * by (simp add: algebra_simps)
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   442
  finally show "f ((1-t) *\<^sub>R x + t *\<^sub>R y) * g ((1-t) *\<^sub>R x + t *\<^sub>R y) \<le> (1-t)*(f x*g x) + t*(f y*g y)" 
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   443
    by simp
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   444
qed
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   445
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   446
lemma convex_on_cmul [intro]:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   447
  fixes c :: real
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   448
  assumes "0 \<le> c"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   449
    and "convex_on S f"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   450
  shows "convex_on S (\<lambda>x. c * f x)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   451
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   452
  have *: "u * (c * fx) + v * (c * fy) = c * (u * fx + v * fy)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   453
    for u c fx v fy :: real
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   454
    by (simp add: field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   455
  show ?thesis using assms(2) and mult_left_mono [OF _ assms(1)]
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   456
    unfolding convex_on_def and * by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   457
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   458
79583
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   459
lemma convex_on_cdiv [intro]:
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   460
  fixes c :: real
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   461
  assumes "0 \<le> c" and "convex_on S f"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   462
  shows "convex_on S (\<lambda>x. f x / c)"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   463
  unfolding divide_inverse
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   464
  using convex_on_cmul [of "inverse c" S f] by (simp add: mult.commute assms)
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   465
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   466
lemma convex_lower:
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   467
  assumes "convex_on S f"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   468
    and "x \<in> S"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   469
    and "y \<in> S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   470
    and "0 \<le> u"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   471
    and "0 \<le> v"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   472
    and "u + v = 1"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   473
  shows "f (u *\<^sub>R x + v *\<^sub>R y) \<le> max (f x) (f y)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   474
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   475
  let ?m = "max (f x) (f y)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   476
  have "u * f x + v * f y \<le> u * max (f x) (f y) + v * max (f x) (f y)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   477
    using assms(4,5) by (auto simp: mult_left_mono add_mono)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   478
  also have "\<dots> = max (f x) (f y)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   479
    using assms(6) by (simp add: distrib_right [symmetric])
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   480
  finally show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   481
    using assms unfolding convex_on_def by fastforce
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   482
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   483
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   484
lemma convex_on_dist [intro]:
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   485
  fixes S :: "'a::real_normed_vector set"
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   486
  assumes "convex S"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   487
  shows "convex_on S (\<lambda>x. dist a x)"
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   488
unfolding convex_on_def dist_norm
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   489
proof (intro conjI strip)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   490
  fix x y
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   491
  assume "x \<in> S" "y \<in> S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   492
  fix u v :: real
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   493
  assume "0 \<le> u"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   494
  assume "0 \<le> v"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   495
  assume "u + v = 1"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   496
  have "a = u *\<^sub>R a + v *\<^sub>R a"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   497
    by (metis \<open>u + v = 1\<close> scaleR_left.add scaleR_one)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   498
  then have "a - (u *\<^sub>R x + v *\<^sub>R y) = (u *\<^sub>R (a - x)) + (v *\<^sub>R (a - y))"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   499
    by (auto simp: algebra_simps)
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   500
  then show "norm (a - (u *\<^sub>R x + v *\<^sub>R y)) \<le> u * norm (a - x) + v * norm (a - y)"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   501
    by (smt (verit, best) \<open>0 \<le> u\<close> \<open>0 \<le> v\<close> norm_scaleR norm_triangle_ineq)
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   502
qed (use assms in auto)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   503
79945
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   504
lemma concave_on_mul:
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   505
  fixes S::"real set"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   506
  assumes f: "concave_on S f" and g: "concave_on S g"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   507
  assumes "mono_on S f" "antimono_on S g"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   508
  assumes fty: "f \<in> S \<rightarrow> {0..}" and gty: "g \<in> S \<rightarrow> {0..}"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   509
  shows "concave_on S (\<lambda>x. f x * g x)"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   510
proof (intro concave_on_linorderI)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   511
  show "convex S"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   512
    using concave_on_imp_convex f by blast
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   513
  fix t::real and x y
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   514
  assume t: "0 < t" "t < 1" and xy: "x \<in> S" "y \<in> S" "x<y"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   515
  have inS: "(1-t)*x + t*y \<in> S"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   516
    using t xy \<open>convex S\<close> by (simp add: convex_alt)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   517
  have "f x * g y + f y * g x \<ge> f x * g x + f y * g y"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   518
    using \<open>mono_on S f\<close> \<open>antimono_on S g\<close>
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   519
    unfolding monotone_on_def by (smt (verit, best) left_diff_distrib mult_left_mono xy)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   520
  with t have *: "t*(1-t) * f x * g y + t*(1-t) * f y * g x \<ge> t*(1-t) * f x * g x + t*(1-t) * f y * g y"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   521
    by (smt (verit, ccfv_SIG) distrib_left mult_left_mono diff_ge_0_iff_ge mult.assoc)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   522
  have "(1 - t) * (f x * g x) + t * (f y * g y) \<le> ((1-t) * f x + t * f y) * ((1-t) * g x + t * g y)"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   523
    using * by (simp add: algebra_simps)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   524
  also have "\<dots> \<le> ((1-t) * f x + t * f y)*g ((1-t)*x + t*y)"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   525
    using concave_onD [OF \<open>concave_on S g\<close>, of t x y] t xy fty gty inS
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   526
    by (intro mult_mono add_nonneg_nonneg) (auto simp: Pi_iff zero_le_mult_iff)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   527
  also have "\<dots> \<le> f ((1-t)*x + t*y) * g ((1-t)*x + t*y)"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   528
    using concave_onD [OF \<open>concave_on S f\<close>, of t x y] t xy fty gty inS
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   529
    by (intro mult_mono add_nonneg_nonneg) (auto simp: Pi_iff zero_le_mult_iff)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   530
  finally show "(1 - t) * (f x * g x) + t * (f y * g y)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   531
           \<le> f ((1 - t) *\<^sub>R x + t *\<^sub>R y) * g ((1 - t) *\<^sub>R x + t *\<^sub>R y)" 
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   532
    by simp
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   533
qed
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   534
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   535
lemma concave_on_cmul [intro]:
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   536
  fixes c :: real
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   537
  assumes "0 \<le> c" and "concave_on S f"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   538
  shows "concave_on S (\<lambda>x. c * f x)"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   539
  using assms convex_on_cmul [of c S "\<lambda>x. - f x"]
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   540
  by (auto simp: concave_on_def)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   541
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   542
lemma concave_on_cdiv [intro]:
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   543
  fixes c :: real
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   544
  assumes "0 \<le> c" and "concave_on S f"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   545
  shows "concave_on S (\<lambda>x. f x / c)"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   546
  unfolding divide_inverse
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
   547
  using concave_on_cmul [of "inverse c" S f] by (simp add: mult.commute assms)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   548
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
   549
subsection\<^marker>\<open>tag unimportant\<close> \<open>Arithmetic operations on sets preserve convexity\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   550
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   551
lemma convex_linear_image:
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   552
  assumes "linear f" and "convex S"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   553
  shows "convex (f ` S)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   554
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   555
  interpret f: linear f by fact
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   556
  from \<open>convex S\<close> show "convex (f ` S)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   557
    by (simp add: convex_def f.scaleR [symmetric] f.add [symmetric])
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   558
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   559
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   560
lemma convex_linear_vimage:
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   561
  assumes "linear f" and "convex S"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   562
  shows "convex (f -` S)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   563
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   564
  interpret f: linear f by fact
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   565
  from \<open>convex S\<close> show "convex (f -` S)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   566
    by (simp add: convex_def f.add f.scaleR)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   567
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   568
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   569
lemma convex_scaling:
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   570
  assumes "convex S"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   571
  shows "convex ((\<lambda>x. c *\<^sub>R x) ` S)"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   572
  by (simp add: assms convex_linear_image)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   573
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   574
lemma convex_scaled:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   575
  assumes "convex S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   576
  shows "convex ((\<lambda>x. x *\<^sub>R c) ` S)"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   577
  by (simp add: assms convex_linear_image)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   578
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   579
lemma convex_negations:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   580
  assumes "convex S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   581
  shows "convex ((\<lambda>x. - x) ` S)"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   582
  by (simp add: assms convex_linear_image module_hom_uminus)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   583
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   584
lemma convex_sums:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   585
  assumes "convex S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   586
    and "convex T"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   587
  shows "convex (\<Union>x\<in> S. \<Union>y \<in> T. {x + y})"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   588
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   589
  have "linear (\<lambda>(x, y). x + y)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   590
    by (auto intro: linearI simp: scaleR_add_right)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   591
  with assms have "convex ((\<lambda>(x, y). x + y) ` (S \<times> T))"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   592
    by (intro convex_linear_image convex_Times)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   593
  also have "((\<lambda>(x, y). x + y) ` (S \<times> T)) = (\<Union>x\<in> S. \<Union>y \<in> T. {x + y})"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   594
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   595
  finally show ?thesis .
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   596
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   597
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   598
lemma convex_differences:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   599
  assumes "convex S" "convex T"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   600
  shows "convex (\<Union>x\<in> S. \<Union>y \<in> T. {x - y})"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   601
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   602
  have "{x - y| x y. x \<in> S \<and> y \<in> T} = {x + y |x y. x \<in> S \<and> y \<in> uminus ` T}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   603
    by (auto simp: diff_conv_add_uminus simp del: add_uminus_conv_diff)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   604
  then show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   605
    using convex_sums[OF assms(1) convex_negations[OF assms(2)]] by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   606
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   607
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   608
lemma convex_translation:
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69619
diff changeset
   609
  "convex ((+) a ` S)" if "convex S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   610
proof -
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69619
diff changeset
   611
  have "(\<Union> x\<in> {a}. \<Union>y \<in> S. {x + y}) = (+) a ` S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   612
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   613
  then show ?thesis
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69619
diff changeset
   614
    using convex_sums [OF convex_singleton [of a] that] by auto
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   615
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   616
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69619
diff changeset
   617
lemma convex_translation_subtract:
a03a63b81f44 tuned proofs
haftmann
parents: 69619
diff changeset
   618
  "convex ((\<lambda>b. b - a) ` S)" if "convex S"
a03a63b81f44 tuned proofs
haftmann
parents: 69619
diff changeset
   619
  using convex_translation [of S "- a"] that by (simp cong: image_cong_simp)
a03a63b81f44 tuned proofs
haftmann
parents: 69619
diff changeset
   620
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   621
lemma convex_affinity:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   622
  assumes "convex S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   623
  shows "convex ((\<lambda>x. a + c *\<^sub>R x) ` S)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   624
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   625
  have "(\<lambda>x. a + c *\<^sub>R x) ` S = (+) a ` (*\<^sub>R) c ` S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   626
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   627
  then show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   628
    using convex_translation[OF convex_scaling[OF assms], of a c] by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   629
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   630
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   631
lemma convex_on_sum:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   632
  fixes a :: "'a \<Rightarrow> real"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   633
    and y :: "'a \<Rightarrow> 'b::real_vector"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   634
    and f :: "'b \<Rightarrow> real"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   635
  assumes "finite S" "S \<noteq> {}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   636
    and "convex_on C f"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   637
    and "(\<Sum> i \<in> S. a i) = 1"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   638
    and "\<And>i. i \<in> S \<Longrightarrow> a i \<ge> 0"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   639
    and "\<And>i. i \<in> S \<Longrightarrow> y i \<in> C"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   640
  shows "f (\<Sum> i \<in> S. a i *\<^sub>R y i) \<le> (\<Sum> i \<in> S. a i * f (y i))"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   641
  using assms
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   642
proof (induct S arbitrary: a rule: finite_ne_induct)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   643
  case (singleton i)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   644
  then show ?case
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   645
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   646
next
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   647
  case (insert i S)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   648
  then have yai: "y i \<in> C" "a i \<ge> 0"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   649
    by auto
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   650
  with insert have conv: "\<And>x y \<mu>. x \<in> C \<Longrightarrow> y \<in> C \<Longrightarrow> 0 \<le> \<mu> \<Longrightarrow> \<mu> \<le> 1 \<Longrightarrow>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   651
      f (\<mu> *\<^sub>R x + (1 - \<mu>) *\<^sub>R y) \<le> \<mu> * f x + (1 - \<mu>) * f y"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   652
    by (simp add: convex_on_def)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   653
  show ?case
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   654
  proof (cases "a i = 1")
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   655
    case True
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   656
    with insert have "(\<Sum> j \<in> S. a j) = 0"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   657
      by auto
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   658
    with insert show ?thesis
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   659
      by (simp add: sum_nonneg_eq_0_iff)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   660
  next
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   661
    case False
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   662
    then have ai1: "a i < 1"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   663
      using sum_nonneg_leq_bound[of "insert i S" a] insert by force
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   664
    then have i0: "1 - a i > 0"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   665
      by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   666
    let ?a = "\<lambda>j. a j / (1 - a i)"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   667
    have a_nonneg: "?a j \<ge> 0" if "j \<in> S" for j
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   668
      using i0 insert that by fastforce
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   669
    have "(\<Sum> j \<in> insert i S. a j) = 1"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   670
      using insert by auto
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   671
    then have "(\<Sum> j \<in> S. a j) = 1 - a i"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   672
      using sum.insert insert by fastforce
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   673
    then have "(\<Sum> j \<in> S. a j) / (1 - a i) = 1"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   674
      using i0 by auto
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   675
    then have a1: "(\<Sum> j \<in> S. ?a j) = 1"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   676
      unfolding sum_divide_distrib by simp
79670
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   677
    have "convex C"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   678
      using \<open>convex_on C f\<close> by (simp add: convex_on_def)
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   679
    have asum: "(\<Sum> j \<in> S. ?a j *\<^sub>R y j) \<in> C"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   680
      using insert convex_sum [OF \<open>finite S\<close> \<open>convex C\<close> a1 a_nonneg] by auto
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   681
    have asum_le: "f (\<Sum> j \<in> S. ?a j *\<^sub>R y j) \<le> (\<Sum> j \<in> S. ?a j * f (y j))"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   682
      using a_nonneg a1 insert by blast
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   683
    have "f (\<Sum> j \<in> insert i S. a j *\<^sub>R y j) = f ((\<Sum> j \<in> S. a j *\<^sub>R y j) + a i *\<^sub>R y i)"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   684
      by (simp add: add.commute insert.hyps)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   685
    also have "\<dots> = f (((1 - a i) * inverse (1 - a i)) *\<^sub>R (\<Sum> j \<in> S. a j *\<^sub>R y j) + a i *\<^sub>R y i)"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   686
      using i0 by auto
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   687
    also have "\<dots> = f ((1 - a i) *\<^sub>R (\<Sum> j \<in> S. (a j * inverse (1 - a i)) *\<^sub>R y j) + a i *\<^sub>R y i)"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   688
      using scaleR_right.sum[of "inverse (1 - a i)" "\<lambda> j. a j *\<^sub>R y j" S, symmetric]
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   689
      by (auto simp: algebra_simps)
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   690
    also have "\<dots> = f ((1 - a i) *\<^sub>R (\<Sum> j \<in> S. ?a j *\<^sub>R y j) + a i *\<^sub>R y i)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   691
      by (auto simp: divide_inverse)
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   692
    also have "\<dots> \<le> (1 - a i) *\<^sub>R f ((\<Sum> j \<in> S. ?a j *\<^sub>R y j)) + a i * f (y i)"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   693
      using ai1 by (smt (verit) asum conv real_scaleR_def yai)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   694
    also have "\<dots> \<le> (1 - a i) * (\<Sum> j \<in> S. ?a j * f (y j)) + a i * f (y i)"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   695
      using asum_le i0 by fastforce
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   696
    also have "\<dots> = (\<Sum> j \<in> S. a j * f (y j)) + a i * f (y i)"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   697
      using i0 by (auto simp: sum_distrib_left)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   698
    finally show ?thesis
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   699
      using insert by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   700
  qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   701
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   702
79670
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   703
lemma concave_on_sum:
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   704
  fixes a :: "'a \<Rightarrow> real"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   705
    and y :: "'a \<Rightarrow> 'b::real_vector"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   706
    and f :: "'b \<Rightarrow> real"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   707
  assumes "finite S" "S \<noteq> {}"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   708
    and "concave_on C f" 
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   709
    and "(\<Sum>i \<in> S. a i) = 1"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   710
    and "\<And>i. i \<in> S \<Longrightarrow> a i \<ge> 0"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   711
    and "\<And>i. i \<in> S \<Longrightarrow> y i \<in> C"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   712
  shows "f (\<Sum>i \<in> S. a i *\<^sub>R y i) \<ge> (\<Sum>i \<in> S. a i * f (y i))"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   713
proof -
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   714
  have "(uminus \<circ> f) (\<Sum>i\<in>S. a i *\<^sub>R y i) \<le> (\<Sum>i\<in>S. a i * (uminus \<circ> f) (y i))"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   715
  proof (intro convex_on_sum)
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   716
    show "convex_on C (uminus \<circ> f)"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   717
      by (simp add: assms convex_on_iff_concave)
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   718
  qed (use assms in auto)
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   719
  then show ?thesis
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   720
    by (simp add: sum_negf o_def)
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   721
qed
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   722
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   723
lemma convex_on_alt:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   724
  fixes C :: "'a::real_vector set"
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   725
  shows "convex_on C f \<longleftrightarrow> convex C \<and>
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   726
         (\<forall>x \<in> C. \<forall>y \<in> C. \<forall> \<mu> :: real. \<mu> \<ge> 0 \<and> \<mu> \<le> 1 \<longrightarrow>
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   727
          f (\<mu> *\<^sub>R x + (1 - \<mu>) *\<^sub>R y) \<le> \<mu> * f x + (1 - \<mu>) * f y)"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   728
  by (smt (verit) convex_on_def)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   729
79583
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   730
lemma convex_on_slope_le:
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   731
  fixes f :: "real \<Rightarrow> real"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   732
  assumes f: "convex_on I f"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   733
    and I: "x \<in> I" "y \<in> I"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   734
    and t: "x < t" "t < y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   735
  shows "(f x - f t) / (x - t) \<le> (f x - f y) / (x - y)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   736
    and "(f x - f y) / (x - y) \<le> (f t - f y) / (t - y)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   737
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   738
  define a where "a \<equiv> (t - y) / (x - y)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   739
  with t have "0 \<le> a" "0 \<le> 1 - a"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   740
    by (auto simp: field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   741
  with f \<open>x \<in> I\<close> \<open>y \<in> I\<close> have cvx: "f (a * x + (1 - a) * y) \<le> a * f x + (1 - a) * f y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   742
    by (auto simp: convex_on_def)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   743
  have "a * x + (1 - a) * y = a * (x - y) + y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   744
    by (simp add: field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   745
  also have "\<dots> = t"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   746
    unfolding a_def using \<open>x < t\<close> \<open>t < y\<close> by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   747
  finally have "f t \<le> a * f x + (1 - a) * f y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   748
    using cvx by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   749
  also have "\<dots> = a * (f x - f y) + f y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   750
    by (simp add: field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   751
  finally have "f t - f y \<le> a * (f x - f y)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   752
    by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   753
  with t show "(f x - f t) / (x - t) \<le> (f x - f y) / (x - y)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   754
    by (simp add: le_divide_eq divide_le_eq field_simps a_def)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   755
  with t show "(f x - f y) / (x - y) \<le> (f t - f y) / (t - y)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   756
    by (simp add: le_divide_eq divide_le_eq field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   757
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   758
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   759
lemma pos_convex_function:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   760
  fixes f :: "real \<Rightarrow> real"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   761
  assumes "convex C"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   762
    and leq: "\<And>x y. x \<in> C \<Longrightarrow> y \<in> C \<Longrightarrow> f' x * (y - x) \<le> f y - f x"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   763
  shows "convex_on C f"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   764
  unfolding convex_on_alt
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   765
  using assms
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   766
proof safe
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   767
  fix x y \<mu> :: real
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   768
  let ?x = "\<mu> *\<^sub>R x + (1 - \<mu>) *\<^sub>R y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   769
  assume *: "convex C" "x \<in> C" "y \<in> C" "\<mu> \<ge> 0" "\<mu> \<le> 1"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   770
  then have "1 - \<mu> \<ge> 0" by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   771
  then have xpos: "?x \<in> C"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   772
    using * unfolding convex_alt by fastforce
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   773
  have geq: "\<mu> * (f x - f ?x) + (1 - \<mu>) * (f y - f ?x) \<ge>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   774
      \<mu> * f' ?x * (x - ?x) + (1 - \<mu>) * f' ?x * (y - ?x)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   775
    using add_mono [OF mult_left_mono [OF leq [OF xpos *(2)] \<open>\<mu> \<ge> 0\<close>]
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   776
        mult_left_mono [OF leq [OF xpos *(3)] \<open>1 - \<mu> \<ge> 0\<close>]]
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   777
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   778
  then have "\<mu> * f x + (1 - \<mu>) * f y - f ?x \<ge> 0"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   779
    by (auto simp: field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   780
  then show "f (\<mu> *\<^sub>R x + (1 - \<mu>) *\<^sub>R y) \<le> \<mu> * f x + (1 - \<mu>) * f y"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
   781
    by auto
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   782
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   783
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   784
lemma atMostAtLeast_subset_convex:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   785
  fixes C :: "real set"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   786
  assumes "convex C"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   787
    and "x \<in> C" "y \<in> C" "x < y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   788
  shows "{x .. y} \<subseteq> C"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   789
proof safe
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   790
  fix z assume z: "z \<in> {x .. y}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   791
  have less: "z \<in> C" if *: "x < z" "z < y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   792
  proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   793
    let ?\<mu> = "(y - z) / (y - x)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   794
    have "0 \<le> ?\<mu>" "?\<mu> \<le> 1"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   795
      using assms * by (auto simp: field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   796
    then have comb: "?\<mu> * x + (1 - ?\<mu>) * y \<in> C"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   797
      using assms iffD1[OF convex_alt, rule_format, of C y x ?\<mu>]
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   798
      by (simp add: algebra_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   799
    have "?\<mu> * x + (1 - ?\<mu>) * y = (y - z) * x / (y - x) + (1 - (y - z) / (y - x)) * y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   800
      by (auto simp: field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   801
    also have "\<dots> = ((y - z) * x + (y - x - (y - z)) * y) / (y - x)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   802
      using assms by (simp only: add_divide_distrib) (auto simp: field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   803
    also have "\<dots> = z"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   804
      using assms by (auto simp: field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   805
    finally show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   806
      using comb by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   807
  qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   808
  show "z \<in> C"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   809
    using z less assms by (auto simp: le_less)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   810
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   811
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   812
lemma f''_imp_f':
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   813
  fixes f :: "real \<Rightarrow> real"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   814
  assumes "convex C"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   815
    and f': "\<And>x. x \<in> C \<Longrightarrow> DERIV f x :> (f' x)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   816
    and f'': "\<And>x. x \<in> C \<Longrightarrow> DERIV f' x :> (f'' x)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   817
    and pos: "\<And>x. x \<in> C \<Longrightarrow> f'' x \<ge> 0"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   818
    and x: "x \<in> C"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   819
    and y: "y \<in> C"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   820
  shows "f' x * (y - x) \<le> f y - f x"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   821
  using assms
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   822
proof -
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   823
  have "f y - f x \<ge> f' x * (y - x)" "f' y * (x - y) \<le> f x - f y"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   824
    if *: "x \<in> C" "y \<in> C" "y > x" for x y :: real
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   825
  proof -
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   826
    from * have ge: "y - x > 0" "y - x \<ge> 0" and le: "x - y < 0" "x - y \<le> 0"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   827
      by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   828
    then obtain z1 where z1: "z1 > x" "z1 < y" "f y - f x = (y - x) * f' z1"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   829
      using subsetD[OF atMostAtLeast_subset_convex[OF \<open>convex C\<close> \<open>x \<in> C\<close> \<open>y \<in> C\<close> \<open>x < y\<close>],
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   830
          THEN f', THEN MVT2[OF \<open>x < y\<close>, rule_format, unfolded atLeastAtMost_iff[symmetric]]]
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   831
      by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   832
    then have "z1 \<in> C"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   833
      using atMostAtLeast_subset_convex \<open>convex C\<close> \<open>x \<in> C\<close> \<open>y \<in> C\<close> \<open>x < y\<close>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   834
      by fastforce
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   835
    obtain z2 where z2: "z2 > x" "z2 < z1" "f' z1 - f' x = (z1 - x) * f'' z2"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   836
      using subsetD[OF atMostAtLeast_subset_convex[OF \<open>convex C\<close> \<open>x \<in> C\<close> \<open>z1 \<in> C\<close> \<open>x < z1\<close>],
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   837
          THEN f'', THEN MVT2[OF \<open>x < z1\<close>, rule_format, unfolded atLeastAtMost_iff[symmetric]]] z1
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   838
      by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   839
    obtain z3 where z3: "z3 > z1" "z3 < y" "f' y - f' z1 = (y - z1) * f'' z3"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   840
      using subsetD[OF atMostAtLeast_subset_convex[OF \<open>convex C\<close> \<open>z1 \<in> C\<close> \<open>y \<in> C\<close> \<open>z1 < y\<close>],
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   841
          THEN f'', THEN MVT2[OF \<open>z1 < y\<close>, rule_format, unfolded atLeastAtMost_iff[symmetric]]] z1
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   842
      by auto
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   843
    from z1 have "f x - f y = (x - y) * f' z1"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   844
      by (simp add: field_simps)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   845
    then have cool': "f' y - (f x - f y) / (x - y) = (y - z1) * f'' z3"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   846
      using le(1) z3(3) by auto
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   847
    have "z3 \<in> C"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   848
      using z3 * atMostAtLeast_subset_convex \<open>convex C\<close> \<open>x \<in> C\<close> \<open>z1 \<in> C\<close> \<open>x < z1\<close>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   849
      by fastforce
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   850
    then have B': "f'' z3 \<ge> 0"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   851
      using assms by auto
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   852
    with cool' have "f' y - (f x - f y) / (x - y) \<ge> 0"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   853
      using z1 by auto
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   854
    then have res: "f' y * (x - y) \<le> f x - f y"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   855
      by (meson diff_ge_0_iff_ge le(1) neg_divide_le_eq)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   856
    have cool: "(f y - f x) / (y - x) - f' x = (z1 - x) * f'' z2"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   857
      using le(1) z1(3) z2(3) by auto
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   858
    have "z2 \<in> C"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   859
      using z2 z1 * atMostAtLeast_subset_convex \<open>convex C\<close> \<open>z1 \<in> C\<close> \<open>y \<in> C\<close> \<open>z1 < y\<close>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   860
      by fastforce
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   861
    with z1 assms have "(z1 - x) * f'' z2 \<ge> 0"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   862
      by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   863
    then show "f y - f x \<ge> f' x * (y - x)" "f' y * (x - y) \<le> f x - f y"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   864
      using that(3) z1(3) res cool by auto
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   865
  qed
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   866
  then show ?thesis
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   867
    using x y by fastforce
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   868
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   869
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   870
lemma f''_ge0_imp_convex:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   871
  fixes f :: "real \<Rightarrow> real"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   872
  assumes "convex C"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   873
    and "\<And>x. x \<in> C \<Longrightarrow> DERIV f x :> (f' x)"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   874
    and "\<And>x. x \<in> C \<Longrightarrow> DERIV f' x :> (f'' x)"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   875
    and "\<And>x. x \<in> C \<Longrightarrow> f'' x \<ge> 0"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   876
  shows "convex_on C f"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
   877
  by (metis assms f''_imp_f' pos_convex_function)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   878
74729
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   879
lemma f''_le0_imp_concave:
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   880
  fixes f :: "real \<Rightarrow> real"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   881
  assumes "convex C"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   882
    and "\<And>x. x \<in> C \<Longrightarrow> DERIV f x :> (f' x)"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   883
    and "\<And>x. x \<in> C \<Longrightarrow> DERIV f' x :> (f'' x)"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   884
    and "\<And>x. x \<in> C \<Longrightarrow> f'' x \<le> 0"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   885
  shows "concave_on C f"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   886
  unfolding concave_on_def
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   887
  by (rule assms f''_ge0_imp_convex derivative_eq_intros | simp)+
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   888
79583
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   889
lemma convex_power_even:
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   890
  assumes "even n"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   891
  shows "convex_on (UNIV::real set) (\<lambda>x. x^n)"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   892
proof (intro f''_ge0_imp_convex)
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   893
  show "((\<lambda>x. x ^ n) has_real_derivative of_nat n * x^(n-1)) (at x)" for x
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   894
    by (rule derivative_eq_intros | simp)+
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   895
  show "((\<lambda>x. of_nat n * x^(n-1)) has_real_derivative of_nat n * of_nat (n-1) * x^(n-2)) (at x)" for x
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   896
    by (rule derivative_eq_intros | simp add: eval_nat_numeral)+
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   897
  show "\<And>x. 0 \<le> real n * real (n - 1) * x ^ (n - 2)"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   898
    using assms by (auto simp: zero_le_mult_iff zero_le_even_power)
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   899
qed auto
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   900
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   901
lemma convex_power_odd:
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   902
  assumes "odd n"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   903
  shows "convex_on {0::real..} (\<lambda>x. x^n)"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   904
proof (intro f''_ge0_imp_convex)
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   905
  show "((\<lambda>x. x ^ n) has_real_derivative of_nat n * x^(n-1)) (at x)" for x
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   906
    by (rule derivative_eq_intros | simp)+
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   907
  show "((\<lambda>x. of_nat n * x^(n-1)) has_real_derivative of_nat n * of_nat (n-1) * x^(n-2)) (at x)" for x
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   908
    by (rule derivative_eq_intros | simp add: eval_nat_numeral)+
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   909
  show "\<And>x. x \<in> {0::real..} \<Longrightarrow> 0 \<le> real n * real (n - 1) * x ^ (n - 2)"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   910
    using assms by (auto simp: zero_le_mult_iff zero_le_even_power)
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   911
qed auto
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   912
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   913
lemma convex_power2: "convex_on (UNIV::real set) power2"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   914
  by (simp add: convex_power_even)
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
   915
74729
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   916
lemma log_concave:
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   917
  fixes b :: real
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   918
  assumes "b > 1"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   919
  shows "concave_on {0<..} (\<lambda> x. log b x)"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   920
  using assms
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   921
  by (intro f''_le0_imp_concave derivative_eq_intros | simp)+
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   922
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   923
lemma ln_concave: "concave_on {0<..} ln"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   924
  unfolding log_ln by (simp add: log_concave)
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   925
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   926
lemma minus_log_convex:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   927
  fixes b :: real
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   928
  assumes "b > 1"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   929
  shows "convex_on {0 <..} (\<lambda> x. - log b x)"
74729
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   930
  using assms concave_on_def log_concave by blast
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   931
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   932
lemma powr_convex: 
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   933
  assumes "p \<ge> 1" shows "convex_on {0<..} (\<lambda>x. x powr p)"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   934
  using assms
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   935
  by (intro f''_ge0_imp_convex derivative_eq_intros | simp)+
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   936
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   937
lemma exp_convex: "convex_on UNIV exp"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
   938
  by (intro f''_ge0_imp_convex derivative_eq_intros | simp)+
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   939
79670
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   940
text \<open>The AM-GM inequality: the arithmetic mean exceeds the geometric mean.\<close>
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   941
lemma arith_geom_mean:
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   942
  fixes x :: "'a \<Rightarrow> real"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   943
  assumes "finite S" "S \<noteq> {}"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   944
    and x: "\<And>i. i \<in> S \<Longrightarrow> x i \<ge> 0"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   945
  shows "(\<Sum>i \<in> S. x i / card S) \<ge> (\<Prod>i \<in> S. x i) powr (1 / card S)"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   946
proof (cases "\<exists>i\<in>S. x i = 0")
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   947
  case True
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   948
  then have "(\<Prod>i \<in> S. x i) = 0"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   949
    by (simp add: \<open>finite S\<close>)
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   950
  moreover have "(\<Sum>i \<in> S. x i / card S) \<ge> 0"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   951
    by (simp add: sum_nonneg x)
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   952
  ultimately show ?thesis
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   953
    by simp
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   954
next
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   955
  case False
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   956
  have "ln (\<Sum>i \<in> S. (1 / card S) *\<^sub>R x i) \<ge> (\<Sum>i \<in> S. (1 / card S) * ln (x i))"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   957
  proof (intro concave_on_sum)
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   958
    show "concave_on {0<..} ln"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   959
      by (simp add: ln_concave)
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   960
    show "\<And>i. i\<in>S \<Longrightarrow> x i \<in> {0<..}"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   961
      using False x by fastforce
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   962
  qed (use assms False in auto)
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   963
  moreover have "(\<Sum>i \<in> S. (1 / card S) *\<^sub>R x i) > 0"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   964
    using False assms by (simp add: card_gt_0_iff less_eq_real_def sum_pos)
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   965
  ultimately have "(\<Sum>i \<in> S. (1 / card S) *\<^sub>R x i) \<ge> exp (\<Sum>i \<in> S. (1 / card S) * ln (x i))"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   966
    using ln_ge_iff by blast
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   967
  then have "(\<Sum>i \<in> S. x i / card S) \<ge> exp (\<Sum>i \<in> S. ln (x i) / card S)"
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   968
    by (simp add: divide_simps)
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   969
  then show ?thesis
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   970
    using assms False
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   971
    by (smt (verit, ccfv_SIG) divide_inverse exp_ln exp_powr_real exp_sum inverse_eq_divide prod.cong prod_powr_distrib) 
f471e1715fc4 A small collection of new and useful facts, including the AM-GM inequality
paulson <lp15@cam.ac.uk>
parents: 79583
diff changeset
   972
qed
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   973
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
   974
subsection\<^marker>\<open>tag unimportant\<close> \<open>Convexity of real functions\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   975
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   976
lemma convex_on_realI:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   977
  assumes "connected A"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   978
    and "\<And>x. x \<in> A \<Longrightarrow> (f has_real_derivative f' x) (at x)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   979
    and "\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> x \<le> y \<Longrightarrow> f' x \<le> f' y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   980
  shows "convex_on A f"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   981
proof (rule convex_on_linorderI)
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   982
  show "convex A"
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   983
    using \<open>connected A\<close> convex_real_interval interval_cases
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   984
    by (smt (verit, ccfv_SIG) connectedD_interval convex_UNIV convex_empty)
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   985
      \<comment> \<open>the equivalence of "connected" and "convex" for real intervals is proved later\<close>
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
   986
next
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   987
  fix t x y :: real
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   988
  assume t: "t > 0" "t < 1"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   989
  assume xy: "x \<in> A" "y \<in> A" "x < y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   990
  define z where "z = (1 - t) * x + t * y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   991
  with \<open>connected A\<close> and xy have ivl: "{x..y} \<subseteq> A"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   992
    using connected_contains_Icc by blast
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   993
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   994
  from xy t have xz: "z > x"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   995
    by (simp add: z_def algebra_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   996
  have "y - z = (1 - t) * (y - x)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   997
    by (simp add: z_def algebra_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   998
  also from xy t have "\<dots> > 0"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
   999
    by (intro mult_pos_pos) simp_all
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1000
  finally have yz: "z < y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1001
    by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1002
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1003
  from assms xz yz ivl t have "\<exists>\<xi>. \<xi> > x \<and> \<xi> < z \<and> f z - f x = (z - x) * f' \<xi>"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1004
    by (intro MVT2) (auto intro!: assms(2))
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1005
  then obtain \<xi> where \<xi>: "\<xi> > x" "\<xi> < z" "f' \<xi> = (f z - f x) / (z - x)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1006
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1007
  from assms xz yz ivl t have "\<exists>\<eta>. \<eta> > z \<and> \<eta> < y \<and> f y - f z = (y - z) * f' \<eta>"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1008
    by (intro MVT2) (auto intro!: assms(2))
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1009
  then obtain \<eta> where \<eta>: "\<eta> > z" "\<eta> < y" "f' \<eta> = (f y - f z) / (y - z)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1010
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1011
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1012
  from \<eta>(3) have "(f y - f z) / (y - z) = f' \<eta>" ..
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1013
  also from \<xi> \<eta> ivl have "\<xi> \<in> A" "\<eta> \<in> A"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1014
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1015
  with \<xi> \<eta> have "f' \<eta> \<ge> f' \<xi>"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1016
    by (intro assms(3)) auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1017
  also from \<xi>(3) have "f' \<xi> = (f z - f x) / (z - x)" .
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1018
  finally have "(f y - f z) * (z - x) \<ge> (f z - f x) * (y - z)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1019
    using xz yz by (simp add: field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1020
  also have "z - x = t * (y - x)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1021
    by (simp add: z_def algebra_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1022
  also have "y - z = (1 - t) * (y - x)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1023
    by (simp add: z_def algebra_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1024
  finally have "(f y - f z) * t \<ge> (f z - f x) * (1 - t)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1025
    using xy by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1026
  then show "(1 - t) * f x + t * f y \<ge> f ((1 - t) *\<^sub>R x + t *\<^sub>R y)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1027
    by (simp add: z_def algebra_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1028
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1029
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1030
lemma convex_on_inverse:
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1031
  fixes A :: "real set"
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
  1032
  assumes "A \<subseteq> {0<..}" "convex A"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1033
  shows "convex_on A inverse"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1034
proof -
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1035
  have "convex_on {0::real<..} inverse"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1036
  proof (intro convex_on_realI)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1037
    fix u v :: real
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1038
    assume "u \<in> {0<..}" "v \<in> {0<..}" "u \<le> v"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1039
    with assms show "-inverse (u^2) \<le> -inverse (v^2)"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1040
      by simp
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1041
  next
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1042
    show "\<And>x. x \<in> {0<..} \<Longrightarrow> (inverse has_real_derivative - inverse (x\<^sup>2)) (at x)"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1043
      by (rule derivative_eq_intros | simp add: power2_eq_square)+
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1044
  qed auto
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1045
  then show ?thesis
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1046
    using assms convex_on_subset by blast
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1047
qed
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1048
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1049
lemma convex_onD_Icc':
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1050
  assumes "convex_on {x..y} f" "c \<in> {x..y}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1051
  defines "d \<equiv> y - x"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1052
  shows "f c \<le> (f y - f x) / d * (c - x) + f x"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1053
proof (cases x y rule: linorder_cases)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1054
  case less
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1055
  then have d: "d > 0"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1056
    by (simp add: d_def)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1057
  from assms(2) less have A: "0 \<le> (c - x) / d" "(c - x) / d \<le> 1"
70817
dd675800469d dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents: 70136
diff changeset
  1058
    by (simp_all add: d_def field_split_simps)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1059
  have "f c = f (x + (c - x) * 1)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1060
    by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1061
  also from less have "1 = ((y - x) / d)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1062
    by (simp add: d_def)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1063
  also from d have "x + (c - x) * \<dots> = (1 - (c - x) / d) *\<^sub>R x + ((c - x) / d) *\<^sub>R y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1064
    by (simp add: field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1065
  also have "f \<dots> \<le> (1 - (c - x) / d) * f x + (c - x) / d * f y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1066
    using assms less by (intro convex_onD_Icc) simp_all
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1067
  also from d have "\<dots> = (f y - f x) / d * (c - x) + f x"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1068
    by (simp add: field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1069
  finally show ?thesis .
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1070
qed (use assms in auto)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1071
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1072
lemma convex_onD_Icc'':
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1073
  assumes "convex_on {x..y} f" "c \<in> {x..y}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1074
  defines "d \<equiv> y - x"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1075
  shows "f c \<le> (f x - f y) / d * (y - c) + f y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1076
proof (cases x y rule: linorder_cases)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1077
  case less
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1078
  then have d: "d > 0"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1079
    by (simp add: d_def)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1080
  from assms(2) less have A: "0 \<le> (y - c) / d" "(y - c) / d \<le> 1"
70817
dd675800469d dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents: 70136
diff changeset
  1081
    by (simp_all add: d_def field_split_simps)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1082
  have "f c = f (y - (y - c) * 1)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1083
    by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1084
  also from less have "1 = ((y - x) / d)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1085
    by (simp add: d_def)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1086
  also from d have "y - (y - c) * \<dots> = (1 - (1 - (y - c) / d)) *\<^sub>R x + (1 - (y - c) / d) *\<^sub>R y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1087
    by (simp add: field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1088
  also have "f \<dots> \<le> (1 - (1 - (y - c) / d)) * f x + (1 - (y - c) / d) * f y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1089
    using assms less by (intro convex_onD_Icc) (simp_all add: field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1090
  also from d have "\<dots> = (f x - f y) / d * (y - c) + f y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1091
    by (simp add: field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1092
  finally show ?thesis .
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1093
qed (use assms in auto)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1094
79945
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1095
lemma concave_onD_Icc:
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1096
  assumes "concave_on {x..y} f" "x \<le> (y :: _ :: {real_vector,preorder})"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1097
  shows "\<And>t. t \<ge> 0 \<Longrightarrow> t \<le> 1 \<Longrightarrow>
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1098
    f ((1 - t) *\<^sub>R x + t *\<^sub>R y) \<ge> (1 - t) * f x + t * f y"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1099
  using assms(2) by (intro concave_onD [OF assms(1)]) simp_all
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1100
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1101
lemma concave_onD_Icc':
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1102
  assumes "concave_on {x..y} f" "c \<in> {x..y}"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1103
  defines "d \<equiv> y - x"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1104
  shows "f c \<ge> (f y - f x) / d * (c - x) + f x"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1105
proof -
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1106
  have "- f c \<le> (f x - f y) / d * (c - x) - f x"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1107
    using assms convex_onD_Icc' [of x y "\<lambda>x. - f x" c]
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1108
    by (simp add: concave_on_def)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1109
  then show ?thesis
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1110
    by (smt (verit, best) divide_minus_left mult_minus_left)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1111
qed
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1112
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1113
lemma concave_onD_Icc'':
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1114
  assumes "concave_on {x..y} f" "c \<in> {x..y}"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1115
  defines "d \<equiv> y - x"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1116
  shows "f c \<ge> (f x - f y) / d * (y - c) + f y"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1117
proof -
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1118
  have "- f c \<le> (f y - f x) / d * (y - c) - f y"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1119
    using assms convex_onD_Icc'' [of x y "\<lambda>x. - f x" c]
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1120
    by (simp add: concave_on_def)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1121
  then show ?thesis
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1122
    by (smt (verit, best) divide_minus_left mult_minus_left)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1123
qed
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1124
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1125
lemma convex_on_le_max:
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1126
  fixes a::real
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1127
  assumes "convex_on {x..y} f" and a: "a \<in> {x..y}"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1128
  shows "f a \<le> max (f x) (f y)"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1129
proof -
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1130
  have *: "(f y - f x) * (a - x) \<le> (f y - f x) * (y - x)" if "f x \<le> f y"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1131
    using a that by (intro mult_left_mono) auto
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1132
  have "f a \<le> (f y - f x) / (y - x) * (a - x) + f x" 
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1133
    using assms convex_onD_Icc' by blast
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1134
  also have "\<dots> \<le> max (f x) (f y)"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1135
    using a *
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1136
    by (simp add: divide_le_0_iff mult_le_0_iff zero_le_mult_iff max_def add.commute mult.commute scaling_mono)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1137
  finally show ?thesis .
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1138
qed
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1139
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1140
lemma concave_on_ge_min:
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1141
  fixes a::real
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1142
  assumes "concave_on {x..y} f" and a: "a \<in> {x..y}"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1143
  shows "f a \<ge> min (f x) (f y)"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1144
proof -
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1145
  have *: "(f y - f x) * (a - x) \<ge> (f y - f x) * (y - x)" if "f x \<ge> f y"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1146
    using a that by (intro mult_left_mono_neg) auto
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1147
  have "min (f x) (f y) \<le> (f y - f x) / (y - x) * (a - x) + f x"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1148
    using a * apply (simp add: zero_le_divide_iff mult_le_0_iff zero_le_mult_iff min_def)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1149
    by (smt (verit, best) nonzero_eq_divide_eq pos_divide_le_eq)
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1150
  also have "\<dots> \<le> f a"
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1151
    using assms concave_onD_Icc' by blast
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1152
  finally show ?thesis .
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1153
qed
ca004ccf2352 New material from a variety of sources (including AFP)
paulson <lp15@cam.ac.uk>
parents: 79670
diff changeset
  1154
80653
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1155
subsection \<open>Convexity of the generalised binomial\<close>
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1156
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1157
lemma mono_on_mul:
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1158
  fixes f::"'a::ord \<Rightarrow> 'b::ordered_semiring"
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1159
  assumes "mono_on S f" "mono_on S g"
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1160
  assumes fty: "f \<in> S \<rightarrow> {0..}" and gty: "g \<in> S \<rightarrow> {0..}"
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1161
  shows "mono_on S (\<lambda>x. f x * g x)"
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1162
  using assms by (auto simp: Pi_iff monotone_on_def intro!: mult_mono)
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1163
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1164
lemma mono_on_prod:
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1165
  fixes f::"'i \<Rightarrow> 'a::ord \<Rightarrow> 'b::linordered_idom"
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1166
  assumes "\<And>i. i \<in> I \<Longrightarrow> mono_on S (f i)" 
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1167
  assumes "\<And>i. i \<in> I \<Longrightarrow> f i \<in> S \<rightarrow> {0..}" 
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1168
  shows "mono_on S (\<lambda>x. prod (\<lambda>i. f i x) I)"
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1169
  using assms
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1170
  by (induction I rule: infinite_finite_induct)
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1171
     (auto simp: mono_on_const Pi_iff prod_nonneg mono_on_mul mono_onI)
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1172
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1173
lemma convex_gchoose_aux: "convex_on {k-1..} (\<lambda>a. prod (\<lambda>i. a - of_nat i) {0..<k})"
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1174
proof (induction k)
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1175
  case 0
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1176
  then show ?case 
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1177
    by (simp add: convex_on_def)
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1178
next
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1179
  case (Suc k)
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1180
  have "convex_on {real k..} (\<lambda>a. (\<Prod>i = 0..<k. a - real i) * (a - real k))"
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1181
  proof (intro convex_on_mul convex_on_diff)
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1182
    show "convex_on {real k..} (\<lambda>x. \<Prod>i = 0..<k. x - real i)"
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1183
      using Suc convex_on_subset by fastforce
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1184
    show "mono_on {real k..} (\<lambda>x. \<Prod>i = 0..<k. x - real i)"
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1185
      by (force simp: monotone_on_def intro!: prod_mono)
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1186
  next
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1187
    show "(\<lambda>x. \<Prod>i = 0..<k. x - real i) \<in> {real k..} \<rightarrow> {0..}"
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1188
      by (auto intro!: prod_nonneg)
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1189
  qed (auto simp: convex_on_ident concave_on_const mono_onI)
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1190
  then show ?case
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1191
    by simp
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1192
qed
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1193
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1194
lemma convex_gchoose: "convex_on {k-1..} (\<lambda>x. x gchoose k)"
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1195
  by (simp add: gbinomial_prod_rev convex_on_cdiv convex_gchoose_aux)
b98f1057da0e New library material; also fixed the spelling error powr_ge_pzero -> powr_ge_zero
paulson <lp15@cam.ac.uk>
parents: 79945
diff changeset
  1196
79583
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
  1197
subsection \<open>Some inequalities: Applications of convexity\<close>
74729
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1198
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1199
lemma Youngs_inequality_0:
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1200
  fixes a::real
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1201
  assumes "0 \<le> \<alpha>" "0 \<le> \<beta>" "\<alpha>+\<beta> = 1" "a>0" "b>0"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1202
  shows "a powr \<alpha> * b powr \<beta> \<le> \<alpha>*a + \<beta>*b"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1203
proof -
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1204
  have "\<alpha> * ln a + \<beta> * ln b \<le> ln (\<alpha> * a + \<beta> * b)"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1205
    using assms ln_concave by (simp add: concave_on_iff)
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1206
  moreover have "0 < \<alpha> * a + \<beta> * b"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1207
    using assms by (smt (verit) mult_pos_pos split_mult_pos_le)
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1208
  ultimately show ?thesis
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1209
    using assms by (simp add: powr_def mult_exp_exp flip: ln_ge_iff)
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1210
qed
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1211
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1212
lemma Youngs_inequality:
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1213
  fixes p::real
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1214
  assumes "p>1" "q>1" "1/p + 1/q = 1" "a\<ge>0" "b\<ge>0"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1215
  shows "a * b \<le> a powr p / p + b powr q / q"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1216
proof (cases "a=0 \<or> b=0")
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1217
  case False
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1218
  then show ?thesis 
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1219
  using Youngs_inequality_0 [of "1/p" "1/q" "a powr p" "b powr q"] assms
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1220
  by (simp add: powr_powr)
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1221
qed (use assms in auto)
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1222
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1223
lemma Cauchy_Schwarz_ineq_sum:
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1224
  fixes a :: "'a \<Rightarrow> 'b::linordered_field"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1225
  shows "(\<Sum>i\<in>I. a i * b i)\<^sup>2 \<le> (\<Sum>i\<in>I. (a i)\<^sup>2) * (\<Sum>i\<in>I. (b i)\<^sup>2)"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1226
proof (cases "(\<Sum>i\<in>I. (b i)\<^sup>2) > 0")
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1227
  case False
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1228
  then consider "\<And>i. i\<in>I \<Longrightarrow> b i = 0" | "infinite I"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1229
    by (metis (mono_tags, lifting) sum_pos2 zero_le_power2 zero_less_power2)
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1230
  thus ?thesis
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1231
    by fastforce
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1232
next
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1233
  case True
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1234
  define r where "r \<equiv> (\<Sum>i\<in>I. a i * b i) / (\<Sum>i\<in>I. (b i)\<^sup>2)"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1235
  have "0 \<le> (\<Sum>i\<in>I. (a i - r * b i)\<^sup>2)"
79532
bb5d036f3523 Type class patch suggested by Achim Brucker, plus tidied lemma
paulson <lp15@cam.ac.uk>
parents: 78656
diff changeset
  1236
    by (simp add: sum_nonneg)
74729
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1237
  also have "... = (\<Sum>i\<in>I. (a i)\<^sup>2) - 2 * r * (\<Sum>i\<in>I. a i * b i) + r\<^sup>2 * (\<Sum>i\<in>I. (b i)\<^sup>2)"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1238
    by (simp add: algebra_simps power2_eq_square sum_distrib_left flip: sum.distrib)
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1239
  also have "\<dots> = (\<Sum>i\<in>I. (a i)\<^sup>2) - ((\<Sum>i\<in>I. a i * b i))\<^sup>2 / (\<Sum>i\<in>I. (b i)\<^sup>2)"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1240
    by (simp add: r_def power2_eq_square)
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1241
  finally have "0 \<le> (\<Sum>i\<in>I. (a i)\<^sup>2) - ((\<Sum>i\<in>I. a i * b i))\<^sup>2 / (\<Sum>i\<in>I. (b i)\<^sup>2)" .
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1242
  hence "((\<Sum>i\<in>I. a i * b i))\<^sup>2 / (\<Sum>i\<in>I. (b i)\<^sup>2) \<le> (\<Sum>i\<in>I. (a i)\<^sup>2)"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1243
    by (simp add: le_diff_eq)
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1244
  thus "((\<Sum>i\<in>I. a i * b i))\<^sup>2 \<le> (\<Sum>i\<in>I. (a i)\<^sup>2) * (\<Sum>i\<in>I. (b i)\<^sup>2)"
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1245
    by (simp add: pos_divide_le_eq True)
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1246
qed
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1247
79583
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
  1248
lemma sum_squared_le_sum_of_squares:
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
  1249
  fixes f :: "'a \<Rightarrow> real"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
  1250
  assumes "\<And>i. i\<in>I \<Longrightarrow> f i \<ge> 0" "finite I" "I \<noteq> {}"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
  1251
  shows "(\<Sum>i\<in>I. f i)\<^sup>2 \<le> (\<Sum>y\<in>I. (f y)\<^sup>2) * card I"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
  1252
proof (cases "finite I \<and> I \<noteq> {}")
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
  1253
  case True
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
  1254
  have "(\<Sum>i\<in>I. f i / real (card I))\<^sup>2 \<le> (\<Sum>i\<in>I. (f i)\<^sup>2 / real (card I))"
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
  1255
    using assms convex_on_sum [OF _ _ convex_power2, where a = "\<lambda>x. 1 / real(card I)" and S=I]
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
  1256
    by simp
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
  1257
  then show ?thesis
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
  1258
    using assms  
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
  1259
    by (simp add: divide_simps power2_eq_square split: if_split_asm flip: sum_divide_distrib)
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
  1260
qed auto
a521c241e946 Further lemmas concerning complexity and measures
paulson <lp15@cam.ac.uk>
parents: 79582
diff changeset
  1261
74729
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1262
subsection \<open>Misc related lemmas\<close>
64b3d8d9bd10 new lemmas about convex, concave functions, + tidying
paulson <lp15@cam.ac.uk>
parents: 72385
diff changeset
  1263
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69619
diff changeset
  1264
lemma convex_translation_eq [simp]:
a03a63b81f44 tuned proofs
haftmann
parents: 69619
diff changeset
  1265
  "convex ((+) a ` s) \<longleftrightarrow> convex s"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1266
  by (metis convex_translation translation_galois)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1267
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69619
diff changeset
  1268
lemma convex_translation_subtract_eq [simp]:
a03a63b81f44 tuned proofs
haftmann
parents: 69619
diff changeset
  1269
  "convex ((\<lambda>b. b - a) ` s) \<longleftrightarrow> convex s"
a03a63b81f44 tuned proofs
haftmann
parents: 69619
diff changeset
  1270
  using convex_translation_eq [of "- a"] by (simp cong: image_cong_simp)
a03a63b81f44 tuned proofs
haftmann
parents: 69619
diff changeset
  1271
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1272
lemma convex_linear_image_eq [simp]:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1273
    fixes f :: "'a::real_vector \<Rightarrow> 'b::real_vector"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1274
    shows "\<lbrakk>linear f; inj f\<rbrakk> \<Longrightarrow> convex (f ` s) \<longleftrightarrow> convex s"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1275
    by (metis (no_types) convex_linear_image convex_linear_vimage inj_vimage_image_eq)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1276
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1277
lemma vector_choose_size:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1278
  assumes "0 \<le> c"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1279
  obtains x :: "'a::{real_normed_vector, perfect_space}" where "norm x = c"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1280
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1281
  obtain a::'a where "a \<noteq> 0"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1282
    using UNIV_not_singleton UNIV_eq_I set_zero singletonI by fastforce
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1283
  then show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1284
    by (rule_tac x="scaleR (c / norm a) a" in that) (simp add: assms)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1285
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1286
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1287
lemma vector_choose_dist:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1288
  assumes "0 \<le> c"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1289
  obtains y :: "'a::{real_normed_vector, perfect_space}" where "dist x y = c"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1290
by (metis add_diff_cancel_left' assms dist_commute dist_norm vector_choose_size)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1291
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1292
lemma sum_delta'':
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1293
  fixes s::"'a::real_vector set"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1294
  assumes "finite s"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1295
  shows "(\<Sum>x\<in>s. (if y = x then f x else 0) *\<^sub>R x) = (if y\<in>s then (f y) *\<^sub>R y else 0)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1296
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1297
  have *: "\<And>x y. (if y = x then f x else (0::real)) *\<^sub>R x = (if x=y then (f x) *\<^sub>R x else 0)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1298
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1299
  show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1300
    unfolding * using sum.delta[OF assms, of y "\<lambda>x. f x *\<^sub>R x"] by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1301
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1302
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1303
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1304
subsection \<open>Cones\<close>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1305
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
  1306
definition\<^marker>\<open>tag important\<close> cone :: "'a::real_vector set \<Rightarrow> bool"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1307
  where "cone s \<longleftrightarrow> (\<forall>x\<in>s. \<forall>c\<ge>0. c *\<^sub>R x \<in> s)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1308
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1309
lemma cone_empty[intro, simp]: "cone {}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1310
  unfolding cone_def by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1311
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1312
lemma cone_univ[intro, simp]: "cone UNIV"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1313
  unfolding cone_def by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1314
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1315
lemma cone_Inter[intro]: "\<forall>s\<in>f. cone s \<Longrightarrow> cone (\<Inter>f)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1316
  unfolding cone_def by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1317
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1318
lemma subspace_imp_cone: "subspace S \<Longrightarrow> cone S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1319
  by (simp add: cone_def subspace_scale)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1320
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1321
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1322
subsubsection \<open>Conic hull\<close>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1323
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1324
lemma cone_cone_hull: "cone (cone hull S)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1325
  unfolding hull_def by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1326
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1327
lemma cone_hull_eq: "cone hull S = S \<longleftrightarrow> cone S"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1328
  by (metis cone_cone_hull hull_same)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1329
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1330
lemma mem_cone:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1331
  assumes "cone S" "x \<in> S" "c \<ge> 0"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1332
  shows "c *\<^sub>R x \<in> S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1333
  using assms cone_def[of S] by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1334
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1335
lemma cone_contains_0:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1336
  assumes "cone S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1337
  shows "S \<noteq> {} \<longleftrightarrow> 0 \<in> S"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1338
  using assms mem_cone by fastforce
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1339
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1340
lemma cone_0: "cone {0}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1341
  unfolding cone_def by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1342
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1343
lemma cone_Union[intro]: "(\<forall>s\<in>f. cone s) \<longrightarrow> cone (\<Union>f)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1344
  unfolding cone_def by blast
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1345
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1346
lemma cone_iff:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1347
  assumes "S \<noteq> {}"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1348
  shows "cone S \<longleftrightarrow> 0 \<in> S \<and> (\<forall>c. c > 0 \<longrightarrow> ((*\<^sub>R) c) ` S = S)"  (is "_ = ?rhs")
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1349
proof 
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1350
  assume "cone S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1351
  {
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1352
    fix c :: real
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1353
    assume "c > 0"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1354
    have "x \<in> ((*\<^sub>R) c) ` S" if "x \<in> S" for x
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1355
        using \<open>cone S\<close> \<open>c>0\<close> mem_cone[of S x "1/c"] that
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1356
          exI[of "(\<lambda>t. t \<in> S \<and> x = c *\<^sub>R t)" "(1 / c) *\<^sub>R x"]
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1357
        by auto
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1358
    then have "((*\<^sub>R) c) ` S = S" 
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1359
        using \<open>0 < c\<close> \<open>cone S\<close> mem_cone by fastforce
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1360
  }
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1361
  then show "0 \<in> S \<and> (\<forall>c. c > 0 \<longrightarrow> ((*\<^sub>R) c) ` S = S)"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1362
    using \<open>cone S\<close> cone_contains_0[of S] assms by auto
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1363
next
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1364
  show "?rhs \<Longrightarrow> cone S"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1365
    by (metis Convex.cone_def imageI order_neq_le_trans scaleR_zero_left)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1366
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1367
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1368
lemma cone_hull_empty: "cone hull {} = {}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1369
  by (metis cone_empty cone_hull_eq)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1370
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1371
lemma cone_hull_empty_iff: "S = {} \<longleftrightarrow> cone hull S = {}"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1372
  by (metis cone_hull_empty hull_subset subset_empty)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1373
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1374
lemma cone_hull_contains_0: "S \<noteq> {} \<longleftrightarrow> 0 \<in> cone hull S"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1375
  by (metis cone_cone_hull cone_contains_0 cone_hull_empty_iff)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1376
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1377
lemma mem_cone_hull:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1378
  assumes "x \<in> S" "c \<ge> 0"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1379
  shows "c *\<^sub>R x \<in> cone hull S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1380
  by (metis assms cone_cone_hull hull_inc mem_cone)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1381
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1382
proposition cone_hull_expl: "cone hull S = {c *\<^sub>R x | c x. c \<ge> 0 \<and> x \<in> S}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1383
  (is "?lhs = ?rhs")
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1384
proof 
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1385
  have "?rhs \<in> Collect cone"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1386
    using Convex.cone_def by fastforce
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1387
  moreover have "S \<subseteq> ?rhs"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1388
    by (smt (verit) mem_Collect_eq scaleR_one subsetI)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1389
  ultimately show "?lhs \<subseteq> ?rhs"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1390
    using hull_minimal by blast
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1391
qed (use mem_cone_hull in auto)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1392
71242
ec5090faf541 separated Affine theory from Convex
nipkow
parents: 71240
diff changeset
  1393
lemma convex_cone:
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1394
  "convex S \<and> cone S \<longleftrightarrow> (\<forall>x\<in>S. \<forall>y\<in>S. (x + y) \<in> S) \<and> (\<forall>x\<in>S. \<forall>c\<ge>0. (c *\<^sub>R x) \<in> S)"
71242
ec5090faf541 separated Affine theory from Convex
nipkow
parents: 71240
diff changeset
  1395
  (is "?lhs = ?rhs")
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1396
proof -
71242
ec5090faf541 separated Affine theory from Convex
nipkow
parents: 71240
diff changeset
  1397
  {
ec5090faf541 separated Affine theory from Convex
nipkow
parents: 71240
diff changeset
  1398
    fix x y
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1399
    assume "x\<in>S" "y\<in>S" and ?lhs
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1400
    then have "2 *\<^sub>R x \<in>S" "2 *\<^sub>R y \<in> S" "convex S"
71242
ec5090faf541 separated Affine theory from Convex
nipkow
parents: 71240
diff changeset
  1401
      unfolding cone_def by auto
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1402
    then have "x + y \<in> S"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1403
      using convexD [OF \<open>convex S\<close>, of "2*\<^sub>R x" "2*\<^sub>R y"]
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1404
      by (smt (verit, ccfv_threshold) field_sum_of_halves scaleR_2 scaleR_half_double)
71242
ec5090faf541 separated Affine theory from Convex
nipkow
parents: 71240
diff changeset
  1405
  }
ec5090faf541 separated Affine theory from Convex
nipkow
parents: 71240
diff changeset
  1406
  then show ?thesis
ec5090faf541 separated Affine theory from Convex
nipkow
parents: 71240
diff changeset
  1407
    unfolding convex_def cone_def by blast
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1408
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1409
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1410
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
  1411
subsection\<^marker>\<open>tag unimportant\<close> \<open>Connectedness of convex sets\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1412
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1413
lemma convex_connected:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1414
  fixes S :: "'a::real_normed_vector set"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1415
  assumes "convex S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1416
  shows "connected S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1417
proof (rule connectedI)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1418
  fix A B
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1419
  assume "open A" "open B" "A \<inter> B \<inter> S = {}" "S \<subseteq> A \<union> B"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1420
  moreover
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1421
  assume "A \<inter> S \<noteq> {}" "B \<inter> S \<noteq> {}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1422
  then obtain a b where a: "a \<in> A" "a \<in> S" and b: "b \<in> B" "b \<in> S" by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1423
  define f where [abs_def]: "f u = u *\<^sub>R a + (1 - u) *\<^sub>R b" for u
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1424
  then have "continuous_on {0 .. 1} f"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1425
    by (auto intro!: continuous_intros)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1426
  then have "connected (f ` {0 .. 1})"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1427
    by (auto intro!: connected_continuous_image)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1428
  note connectedD[OF this, of A B]
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1429
  moreover have "a \<in> A \<inter> f ` {0 .. 1}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1430
    using a by (auto intro!: image_eqI[of _ _ 1] simp: f_def)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1431
  moreover have "b \<in> B \<inter> f ` {0 .. 1}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1432
    using b by (auto intro!: image_eqI[of _ _ 0] simp: f_def)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1433
  moreover have "f ` {0 .. 1} \<subseteq> S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1434
    using \<open>convex S\<close> a b unfolding convex_def f_def by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1435
  ultimately show False by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1436
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1437
71136
nipkow
parents: 71044
diff changeset
  1438
corollary%unimportant connected_UNIV[intro]: "connected (UNIV :: 'a::real_normed_vector set)"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1439
  by (simp add: convex_connected)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1440
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1441
lemma convex_prod:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1442
  assumes "\<And>i. i \<in> Basis \<Longrightarrow> convex {x. P i x}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1443
  shows "convex {x. \<forall>i\<in>Basis. P i (x\<bullet>i)}"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1444
  using assms by (auto simp: inner_add_left convex_def)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1445
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1446
lemma convex_positive_orthant: "convex {x::'a::euclidean_space. (\<forall>i\<in>Basis. 0 \<le> x\<bullet>i)}"
71136
nipkow
parents: 71044
diff changeset
  1447
by (rule convex_prod) (simp flip: atLeast_def)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1448
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1449
subsection \<open>Convex hull\<close>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1450
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1451
lemma convex_convex_hull [iff]: "convex (convex hull s)"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1452
  by (metis (mono_tags) convex_Inter hull_def mem_Collect_eq)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1453
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1454
lemma convex_hull_subset:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1455
    "s \<subseteq> convex hull t \<Longrightarrow> convex hull s \<subseteq> convex hull t"
71174
nipkow
parents: 71136
diff changeset
  1456
  by (simp add: subset_hull)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1457
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1458
lemma convex_hull_eq: "convex hull s = s \<longleftrightarrow> convex s"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1459
  by (metis convex_convex_hull hull_same)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1460
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
  1461
subsubsection\<^marker>\<open>tag unimportant\<close> \<open>Convex hull is "preserved" by a linear function\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1462
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1463
lemma convex_hull_linear_image:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1464
  assumes f: "linear f"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1465
  shows "f ` (convex hull S) = convex hull (f ` S)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1466
proof
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1467
  show "convex hull (f ` S) \<subseteq> f ` (convex hull S)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1468
    by (intro hull_minimal image_mono hull_subset convex_linear_image assms convex_convex_hull)
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1469
  show "f ` (convex hull S) \<subseteq> convex hull (f ` S)"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1470
    by (meson convex_convex_hull convex_linear_vimage f hull_minimal hull_subset image_subset_iff_subset_vimage)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1471
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1472
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1473
lemma in_convex_hull_linear_image:
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1474
  assumes "linear f" "x \<in> convex hull S"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1475
  shows "f x \<in> convex hull (f ` S)"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1476
  using assms convex_hull_linear_image image_eqI by blast
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1477
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1478
lemma convex_hull_Times:
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1479
  "convex hull (S \<times> T) = (convex hull S) \<times> (convex hull T)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1480
proof
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1481
  show "convex hull (S \<times> T) \<subseteq> (convex hull S) \<times> (convex hull T)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1482
    by (intro hull_minimal Sigma_mono hull_subset convex_Times convex_convex_hull)
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1483
  have "(x, y) \<in> convex hull (S \<times> T)" if x: "x \<in> convex hull S" and y: "y \<in> convex hull T" for x y
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1484
  proof (rule hull_induct [OF x], rule hull_induct [OF y])
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1485
    fix x y assume "x \<in> S" and "y \<in> T"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1486
    then show "(x, y) \<in> convex hull (S \<times> T)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1487
      by (simp add: hull_inc)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1488
  next
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1489
    fix x let ?S = "((\<lambda>y. (0, y)) -` (\<lambda>p. (- x, 0) + p) ` (convex hull S \<times> T))"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1490
    have "convex ?S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1491
      by (intro convex_linear_vimage convex_translation convex_convex_hull,
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1492
        simp add: linear_iff)
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1493
    also have "?S = {y. (x, y) \<in> convex hull (S \<times> T)}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1494
      by (auto simp: image_def Bex_def)
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1495
    finally show "convex {y. (x, y) \<in> convex hull (S \<times> T)}" .
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1496
  next
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1497
    show "convex {x. (x, y) \<in> convex hull S \<times> T}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1498
    proof -
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1499
      fix y let ?S = "((\<lambda>x. (x, 0)) -` (\<lambda>p. (0, - y) + p) ` (convex hull S \<times> T))"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1500
      have "convex ?S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1501
      by (intro convex_linear_vimage convex_translation convex_convex_hull,
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1502
        simp add: linear_iff)
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1503
      also have "?S = {x. (x, y) \<in> convex hull (S \<times> T)}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1504
        by (auto simp: image_def Bex_def)
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1505
      finally show "convex {x. (x, y) \<in> convex hull (S \<times> T)}" .
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1506
    qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1507
  qed
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1508
  then show "(convex hull S) \<times> (convex hull T) \<subseteq> convex hull (S \<times> T)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1509
    unfolding subset_eq split_paired_Ball_Sigma by blast
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1510
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1511
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1512
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
  1513
subsubsection\<^marker>\<open>tag unimportant\<close> \<open>Stepping theorems for convex hulls of finite sets\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1514
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1515
lemma convex_hull_empty[simp]: "convex hull {} = {}"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1516
  by (simp add: hull_same)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1517
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1518
lemma convex_hull_singleton[simp]: "convex hull {a} = {a}"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1519
  by (simp add: hull_same)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1520
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1521
lemma convex_hull_insert:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1522
  fixes S :: "'a::real_vector set"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1523
  assumes "S \<noteq> {}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1524
  shows "convex hull (insert a S) =
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1525
         {x. \<exists>u\<ge>0. \<exists>v\<ge>0. \<exists>b. (u + v = 1) \<and> b \<in> (convex hull S) \<and> (x = u *\<^sub>R a + v *\<^sub>R b)}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1526
  (is "_ = ?hull")
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1527
proof (intro equalityI hull_minimal subsetI)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1528
  fix x
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1529
  assume "x \<in> insert a S"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1530
  then show "x \<in> ?hull"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1531
  unfolding insert_iff
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1532
  proof
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1533
    assume "x = a"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1534
    then show ?thesis
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1535
      by (smt (verit, del_insts) add.right_neutral assms ex_in_conv hull_inc mem_Collect_eq scaleR_one scaleR_zero_left)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1536
  next
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1537
    assume "x \<in> S"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1538
    with hull_subset show ?thesis
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1539
      by force
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1540
  qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1541
next
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1542
  fix x
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1543
  assume "x \<in> ?hull"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1544
  then obtain u v b where obt: "u\<ge>0" "v\<ge>0" "u + v = 1" "b \<in> convex hull S" "x = u *\<^sub>R a + v *\<^sub>R b"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1545
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1546
  have "a \<in> convex hull insert a S" "b \<in> convex hull insert a S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1547
    using hull_mono[of S "insert a S" convex] hull_mono[of "{a}" "insert a S" convex] and obt(4)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1548
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1549
  then show "x \<in> convex hull insert a S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1550
    unfolding obt(5) using obt(1-3)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1551
    by (rule convexD [OF convex_convex_hull])
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1552
next
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1553
  show "convex ?hull"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1554
  proof (rule convexI)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1555
    fix x y u v
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1556
    assume as: "(0::real) \<le> u" "0 \<le> v" "u + v = 1" and x: "x \<in> ?hull" and y: "y \<in> ?hull"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1557
    from x obtain u1 v1 b1 where
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1558
      obt1: "u1\<ge>0" "v1\<ge>0" "u1 + v1 = 1" "b1 \<in> convex hull S" and xeq: "x = u1 *\<^sub>R a + v1 *\<^sub>R b1"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1559
      by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1560
    from y obtain u2 v2 b2 where
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1561
      obt2: "u2\<ge>0" "v2\<ge>0" "u2 + v2 = 1" "b2 \<in> convex hull S" and yeq: "y = u2 *\<^sub>R a + v2 *\<^sub>R b2"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1562
      by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1563
    have *: "\<And>(x::'a) s1 s2. x - s1 *\<^sub>R x - s2 *\<^sub>R x = ((1::real) - (s1 + s2)) *\<^sub>R x"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1564
      by (auto simp: algebra_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1565
    have "\<exists>b \<in> convex hull S. u *\<^sub>R x + v *\<^sub>R y =
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1566
      (u * u1) *\<^sub>R a + (v * u2) *\<^sub>R a + (b - (u * u1) *\<^sub>R b - (v * u2) *\<^sub>R b)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1567
    proof (cases "u * v1 + v * v2 = 0")
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1568
      case True
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1569
      have *: "\<And>(x::'a) s1 s2. x - s1 *\<^sub>R x - s2 *\<^sub>R x = ((1::real) - (s1 + s2)) *\<^sub>R x"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1570
        by (auto simp: algebra_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1571
      have eq0: "u * v1 = 0" "v * v2 = 0"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1572
        using True mult_nonneg_nonneg[OF \<open>u\<ge>0\<close> \<open>v1\<ge>0\<close>] mult_nonneg_nonneg[OF \<open>v\<ge>0\<close> \<open>v2\<ge>0\<close>]
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1573
        by arith+
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1574
      then have "u * u1 + v * u2 = 1"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1575
        using as(3) obt1(3) obt2(3) by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1576
      then show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1577
        using "*" eq0 as obt1(4) xeq yeq by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1578
    next
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1579
      case False
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1580
      have "1 - (u * u1 + v * u2) = (u + v) - (u * u1 + v * u2)"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1581
        by (simp add: as(3))
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1582
      also have "\<dots> = u * v1 + v * v2"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1583
        by (smt (verit, ccfv_SIG) distrib_left mult_cancel_left1 obt1(3) obt2(3))
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1584
      finally have **:"1 - (u * u1 + v * u2) = u * v1 + v * v2" .
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1585
      let ?b = "((u * v1) / (u * v1 + v * v2)) *\<^sub>R b1 + ((v * v2) / (u * v1 + v * v2)) *\<^sub>R b2"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1586
      have zeroes: "0 \<le> u * v1 + v * v2" "0 \<le> u * v1" "0 \<le> u * v1 + v * v2" "0 \<le> v * v2"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1587
        using as obt1 obt2 by auto
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1588
      show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1589
      proof
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1590
        show "u *\<^sub>R x + v *\<^sub>R y = (u * u1) *\<^sub>R a + (v * u2) *\<^sub>R a + (?b - (u * u1) *\<^sub>R ?b - (v * u2) *\<^sub>R ?b)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1591
          unfolding xeq yeq * **
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1592
          using False by (auto simp: scaleR_left_distrib scaleR_right_distrib)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1593
        show "?b \<in> convex hull S"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1594
          using False mem_convex_alt obt1(4) obt2(4) zeroes(2) zeroes(4) by fastforce
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1595
      qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1596
    qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1597
    then obtain b where b: "b \<in> convex hull S" 
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1598
       "u *\<^sub>R x + v *\<^sub>R y = (u * u1) *\<^sub>R a + (v * u2) *\<^sub>R a + (b - (u * u1) *\<^sub>R b - (v * u2) *\<^sub>R b)" ..
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1599
    obtain u1: "u1 \<le> 1" and u2: "u2 \<le> 1"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1600
      using obt1 obt2 by auto
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1601
    have "u1 * u + u2 * v \<le> max u1 u2 * u + max u1 u2 * v"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1602
      by (smt (verit, ccfv_SIG) as mult_right_mono)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1603
    also have "\<dots> \<le> 1"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1604
      unfolding distrib_left[symmetric] and as(3) using u1 u2 by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1605
    finally have le1: "u1 * u + u2 * v \<le> 1" .    
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1606
    show "u *\<^sub>R x + v *\<^sub>R y \<in> ?hull"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1607
    proof (intro CollectI exI conjI)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1608
      show "0 \<le> u * u1 + v * u2"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1609
        by (simp add: as obt1(1) obt2(1))
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1610
      show "0 \<le> 1 - u * u1 - v * u2"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1611
        by (simp add: le1 diff_diff_add mult.commute)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1612
    qed (use b in \<open>auto simp: algebra_simps\<close>)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1613
  qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1614
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1615
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1616
lemma convex_hull_insert_alt:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1617
   "convex hull (insert a S) =
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1618
     (if S = {} then {a}
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1619
      else {(1 - u) *\<^sub>R a + u *\<^sub>R x |x u. 0 \<le> u \<and> u \<le> 1 \<and> x \<in> convex hull S})"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1620
  apply (simp add: convex_hull_insert)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1621
  using diff_add_cancel diff_ge_0_iff_ge
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1622
  by (smt (verit, del_insts) Collect_cong) 
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1623
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
  1624
subsubsection\<^marker>\<open>tag unimportant\<close> \<open>Explicit expression for convex hull\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1625
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1626
proposition convex_hull_indexed:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1627
  fixes S :: "'a::real_vector set"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1628
  shows "convex hull S =
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1629
    {y. \<exists>k u x. (\<forall>i\<in>{1::nat .. k}. 0 \<le> u i \<and> x i \<in> S) \<and>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1630
                (sum u {1..k} = 1) \<and> (\<Sum>i = 1..k. u i *\<^sub>R x i) = y}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1631
    (is "?xyz = ?hull")
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1632
proof (rule hull_unique [OF _ convexI])
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1633
  show "S \<subseteq> ?hull" 
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1634
    by (clarsimp, rule_tac x=1 in exI, rule_tac x="\<lambda>x. 1" in exI, auto)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1635
next
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1636
  fix T
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1637
  assume "S \<subseteq> T" "convex T"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1638
  then show "?hull \<subseteq> T"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1639
    by (blast intro: convex_sum)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1640
next
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1641
  fix x y u v
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1642
  assume uv: "0 \<le> u" "0 \<le> v" "u + v = (1::real)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1643
  assume xy: "x \<in> ?hull" "y \<in> ?hull"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1644
  from xy obtain k1 u1 x1 where
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1645
    x [rule_format]: "\<forall>i\<in>{1::nat..k1}. 0\<le>u1 i \<and> x1 i \<in> S" 
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1646
                      "sum u1 {Suc 0..k1} = 1" "(\<Sum>i = Suc 0..k1. u1 i *\<^sub>R x1 i) = x"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1647
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1648
  from xy obtain k2 u2 x2 where
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1649
    y [rule_format]: "\<forall>i\<in>{1::nat..k2}. 0\<le>u2 i \<and> x2 i \<in> S" 
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1650
                     "sum u2 {Suc 0..k2} = 1" "(\<Sum>i = Suc 0..k2. u2 i *\<^sub>R x2 i) = y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1651
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1652
  have *: "\<And>P (x::'a) y s t i. (if P i then s else t) *\<^sub>R (if P i then x else y) = (if P i then s *\<^sub>R x else t *\<^sub>R y)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1653
          "{1..k1 + k2} \<inter> {1..k1} = {1..k1}" "{1..k1 + k2} \<inter> - {1..k1} = (\<lambda>i. i + k1) ` {1..k2}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1654
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1655
  have inj: "inj_on (\<lambda>i. i + k1) {1..k2}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1656
    unfolding inj_on_def by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1657
  let ?uu = "\<lambda>i. if i \<in> {1..k1} then u * u1 i else v * u2 (i - k1)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1658
  let ?xx = "\<lambda>i. if i \<in> {1..k1} then x1 i else x2 (i - k1)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1659
  show "u *\<^sub>R x + v *\<^sub>R y \<in> ?hull"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1660
  proof (intro CollectI exI conjI ballI)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1661
    show "0 \<le> ?uu i" "?xx i \<in> S" if "i \<in> {1..k1+k2}" for i
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1662
      using that by (auto simp add: le_diff_conv uv(1) x(1) uv(2) y(1))
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1663
    show "(\<Sum>i = 1..k1 + k2. ?uu i) = 1"  "(\<Sum>i = 1..k1 + k2. ?uu i *\<^sub>R ?xx i) = u *\<^sub>R x + v *\<^sub>R y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1664
      unfolding * sum.If_cases[OF finite_atLeastAtMost[of 1 "k1 + k2"]]
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1665
        sum.reindex[OF inj] Collect_mem_eq o_def
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1666
      unfolding scaleR_scaleR[symmetric] scaleR_right.sum [symmetric] sum_distrib_left[symmetric]
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1667
      by (simp_all add: sum_distrib_left[symmetric]  x(2,3) y(2,3) uv(3))
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1668
  qed 
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1669
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1670
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1671
lemma convex_hull_finite:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1672
  fixes S :: "'a::real_vector set"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1673
  assumes "finite S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1674
  shows "convex hull S = {y. \<exists>u. (\<forall>x\<in>S. 0 \<le> u x) \<and> sum u S = 1 \<and> sum (\<lambda>x. u x *\<^sub>R x) S = y}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1675
  (is "?HULL = _")
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1676
proof (rule hull_unique [OF _ convexI]; clarify)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1677
  fix x
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1678
  assume "x \<in> S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1679
  then show "\<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) = x"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1680
    by (rule_tac x="\<lambda>y. if x=y then 1 else 0" in exI) (auto simp: sum.delta'[OF assms] sum_delta''[OF assms])
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1681
next
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1682
  fix u v :: real
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1683
  assume uv: "0 \<le> u" "0 \<le> v" "u + v = 1"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1684
  fix ux assume ux [rule_format]: "\<forall>x\<in>S. 0 \<le> ux x" "sum ux S = (1::real)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1685
  fix uy assume uy [rule_format]: "\<forall>x\<in>S. 0 \<le> uy x" "sum uy S = (1::real)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1686
  have "0 \<le> u * ux x + v * uy x" if "x\<in>S" for x
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1687
    by (simp add: that uv ux(1) uy(1))
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1688
  moreover
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1689
  have "(\<Sum>x\<in>S. u * ux x + v * uy x) = 1"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1690
    unfolding sum.distrib and sum_distrib_left[symmetric] ux(2) uy(2)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1691
    using uv(3) by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1692
  moreover
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1693
  have "(\<Sum>x\<in>S. (u * ux x + v * uy x) *\<^sub>R x) = u *\<^sub>R (\<Sum>x\<in>S. ux x *\<^sub>R x) + v *\<^sub>R (\<Sum>x\<in>S. uy x *\<^sub>R x)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1694
    unfolding scaleR_left_distrib sum.distrib scaleR_scaleR[symmetric] scaleR_right.sum [symmetric]
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1695
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1696
  ultimately
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1697
  show "\<exists>uc. (\<forall>x\<in>S. 0 \<le> uc x) \<and> sum uc S = 1 \<and>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1698
             (\<Sum>x\<in>S. uc x *\<^sub>R x) = u *\<^sub>R (\<Sum>x\<in>S. ux x *\<^sub>R x) + v *\<^sub>R (\<Sum>x\<in>S. uy x *\<^sub>R x)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1699
    by (rule_tac x="\<lambda>x. u * ux x + v * uy x" in exI, auto)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1700
qed (use assms in \<open>auto simp: convex_explicit\<close>)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1701
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1702
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
  1703
subsubsection\<^marker>\<open>tag unimportant\<close> \<open>Another formulation\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1704
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1705
text "Formalized by Lars Schewe."
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1706
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1707
lemma convex_hull_explicit:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1708
  fixes p :: "'a::real_vector set"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1709
  shows "convex hull p =
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1710
    {y. \<exists>S u. finite S \<and> S \<subseteq> p \<and> (\<forall>x\<in>S. 0 \<le> u x) \<and> sum u S = 1 \<and> sum (\<lambda>v. u v *\<^sub>R v) S = y}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1711
  (is "?lhs = ?rhs")
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1712
proof (intro subset_antisym subsetI)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1713
  fix x
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1714
  assume "x \<in> convex hull p"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1715
  then obtain k u y where
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1716
    obt: "\<forall>i\<in>{1::nat..k}. 0 \<le> u i \<and> y i \<in> p" "sum u {1..k} = 1" "(\<Sum>i = 1..k. u i *\<^sub>R y i) = x"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1717
    unfolding convex_hull_indexed by auto
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1718
  have fin: "finite {1..k}" by auto
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1719
  {
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1720
    fix j
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1721
    assume "j\<in>{1..k}"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1722
    then have "y j \<in> p \<and> 0 \<le> sum u {i. Suc 0 \<le> i \<and> i \<le> k \<and> y i = y j}"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1723
      by (metis (mono_tags, lifting) One_nat_def atLeastAtMost_iff mem_Collect_eq obt(1) sum_nonneg)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1724
  }
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1725
  moreover have "(\<Sum>v\<in>y ` {1..k}. sum u {i \<in> {1..k}. y i = v}) = 1"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1726
    unfolding sum.image_gen[OF fin, symmetric] using obt(2) by auto
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1727
  moreover have "(\<Sum>v\<in>y ` {1..k}. sum u {i \<in> {1..k}. y i = v} *\<^sub>R v) = x"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1728
    using sum.image_gen[OF fin, of "\<lambda>i. u i *\<^sub>R y i" y, symmetric]
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1729
    unfolding scaleR_left.sum using obt(3) by auto
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1730
  ultimately
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1731
  have "\<exists>S u. finite S \<and> S \<subseteq> p \<and> (\<forall>x\<in>S. 0 \<le> u x) \<and> sum u S = 1 \<and> (\<Sum>v\<in>S. u v *\<^sub>R v) = x"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1732
    by (smt (verit, ccfv_SIG) imageE mem_Collect_eq obt(1) subsetI sum.cong sum.infinite sum_nonneg)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1733
  then show "x \<in> ?rhs" by auto
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1734
next
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1735
  fix y
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1736
  assume "y \<in> ?rhs"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1737
  then obtain S u where
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1738
    S: "finite S" "S \<subseteq> p" "\<forall>x\<in>S. 0 \<le> u x" "sum u S = 1" "(\<Sum>v\<in>S. u v *\<^sub>R v) = y"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1739
    by auto
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1740
  obtain f where f: "inj_on f {1..card S}" "f ` {1..card S} = S"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1741
    using ex_bij_betw_nat_finite_1[OF S(1)] unfolding bij_betw_def by auto
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1742
  then have "0 \<le> u (f i)" "f i \<in> p" if "i \<in> {1..card S}" for i
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1743
    using S \<open>i \<in> {1..card S}\<close> by blast+
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1744
  moreover 
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1745
  {
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1746
    fix y
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1747
    assume "y\<in>S"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1748
    then obtain i where "i\<in>{1..card S}" "f i = y"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1749
      by (metis f(2) image_iff)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1750
    then have "{x. Suc 0 \<le> x \<and> x \<le> card S \<and> f x = y} = {i}"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1751
      using f(1) inj_onD by fastforce
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1752
    then have "(\<Sum>x\<in>{x \<in> {1..card S}. f x = y}. u (f x)) = u y"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1753
      "(\<Sum>x\<in>{x \<in> {1..card S}. f x = y}. u (f x) *\<^sub>R f x) = u y *\<^sub>R y"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1754
      by (simp_all add: sum_constant_scaleR \<open>f i = y\<close>)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1755
  }
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1756
  then have "(\<Sum>x = 1..card S. u (f x)) = 1" "(\<Sum>i = 1..card S. u (f i) *\<^sub>R f i) = y"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1757
    by (metis (mono_tags, lifting) S(4,5) f sum.reindex_cong)+
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1758
  ultimately
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1759
  show "y \<in> convex hull p"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1760
    unfolding convex_hull_indexed
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1761
    by (smt (verit, del_insts) mem_Collect_eq sum.cong)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1762
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1763
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1764
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
  1765
subsubsection\<^marker>\<open>tag unimportant\<close> \<open>A stepping theorem for that expansion\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1766
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1767
lemma convex_hull_finite_step:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1768
  fixes S :: "'a::real_vector set"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1769
  assumes "finite S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1770
  shows
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1771
    "(\<exists>u. (\<forall>x\<in>insert a S. 0 \<le> u x) \<and> sum u (insert a S) = w \<and> sum (\<lambda>x. u x *\<^sub>R x) (insert a S) = y)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1772
      \<longleftrightarrow> (\<exists>v\<ge>0. \<exists>u. (\<forall>x\<in>S. 0 \<le> u x) \<and> sum u S = w - v \<and> sum (\<lambda>x. u x *\<^sub>R x) S = y - v *\<^sub>R a)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1773
  (is "?lhs = ?rhs")
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1774
proof (cases "a \<in> S")
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1775
  case True
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1776
  then have *: "insert a S = S" by auto
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1777
  show ?thesis
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1778
  proof
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1779
    assume ?lhs
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1780
    then show ?rhs
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1781
      unfolding * by force
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1782
  next
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1783
    have fin: "finite (insert a S)" using assms by auto
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1784
    assume ?rhs
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1785
    then obtain v u where uv: "v\<ge>0" "\<forall>x\<in>S. 0 \<le> u x" "sum u S = w - v" "(\<Sum>x\<in>S. u x *\<^sub>R x) = y - v *\<^sub>R a"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1786
      by auto
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1787
    then show ?lhs
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1788
      using uv True assms
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1789
      apply (rule_tac x = "\<lambda>x. (if a = x then v else 0) + u x" in exI)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1790
      apply (auto simp: sum_clauses scaleR_left_distrib sum.distrib sum_delta''[OF fin])
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1791
      done
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1792
  qed
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1793
next
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1794
  case False
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1795
  show ?thesis
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1796
  proof
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1797
    assume ?lhs
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1798
    then obtain u where u: "\<forall>x\<in>insert a S. 0 \<le> u x" "sum u (insert a S) = w" "(\<Sum>x\<in>insert a S. u x *\<^sub>R x) = y"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1799
      by auto
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1800
    then show ?rhs
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1801
      using u \<open>a\<notin>S\<close> by (rule_tac x="u a" in exI) (auto simp: sum_clauses assms)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1802
  next
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1803
    assume ?rhs
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1804
    then obtain v u where uv: "v\<ge>0" "\<forall>x\<in>S. 0 \<le> u x" "sum u S = w - v" "(\<Sum>x\<in>S. u x *\<^sub>R x) = y - v *\<^sub>R a"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1805
      by auto
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1806
    moreover
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1807
    have "(\<Sum>x\<in>S. if a = x then v else u x) = sum u S"  "(\<Sum>x\<in>S. (if a = x then v else u x) *\<^sub>R x) = (\<Sum>x\<in>S. u x *\<^sub>R x)"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1808
      using False by (auto intro!: sum.cong)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1809
    ultimately show ?lhs
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1810
      using False by (rule_tac x="\<lambda>x. if a = x then v else u x" in exI) (auto simp: sum_clauses(2)[OF assms])
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1811
  qed
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1812
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1813
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1814
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
  1815
subsubsection\<^marker>\<open>tag unimportant\<close> \<open>Hence some special cases\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1816
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1817
lemma convex_hull_2: "convex hull {a,b} = {u *\<^sub>R a + v *\<^sub>R b | u v. 0 \<le> u \<and> 0 \<le> v \<and> u + v = 1}"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1818
       (is "?lhs = ?rhs")
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1819
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1820
  have **: "finite {b}" by auto
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1821
  have "\<And>x v u. \<lbrakk>0 \<le> v; v \<le> 1; (1 - v) *\<^sub>R b = x - v *\<^sub>R a\<rbrakk>
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1822
                \<Longrightarrow> \<exists>u v. x = u *\<^sub>R a + v *\<^sub>R b \<and> 0 \<le> u \<and> 0 \<le> v \<and> u + v = 1"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1823
    by (metis add.commute diff_add_cancel diff_ge_0_iff_ge)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1824
  moreover
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1825
  have "\<And>u v. \<lbrakk>0 \<le> u; 0 \<le> v; u + v = 1\<rbrakk>
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1826
               \<Longrightarrow> \<exists>p\<ge>0. \<exists>q. 0 \<le> q b \<and> q b = 1 - p \<and> q b *\<^sub>R b = u *\<^sub>R a + v *\<^sub>R b - p *\<^sub>R a"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1827
    apply (rule_tac x=u in exI, simp)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1828
    apply (rule_tac x="\<lambda>x. v" in exI, simp)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1829
    done
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1830
  ultimately show ?thesis
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1831
    using convex_hull_finite_step[OF **, of a 1]
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1832
    by (auto simp add: convex_hull_finite)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1833
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1834
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1835
lemma convex_hull_2_alt: "convex hull {a,b} = {a + u *\<^sub>R (b - a) | u.  0 \<le> u \<and> u \<le> 1}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1836
  unfolding convex_hull_2
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1837
proof (rule Collect_cong)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1838
  have *: "\<And>x y ::real. x + y = 1 \<longleftrightarrow> x = 1 - y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1839
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1840
  fix x
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1841
  show "(\<exists>v u. x = v *\<^sub>R a + u *\<^sub>R b \<and> 0 \<le> v \<and> 0 \<le> u \<and> v + u = 1) \<longleftrightarrow>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1842
    (\<exists>u. x = a + u *\<^sub>R (b - a) \<and> 0 \<le> u \<and> u \<le> 1)"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1843
    apply (simp add: *)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1844
    by (rule ex_cong1) (auto simp: algebra_simps)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1845
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1846
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1847
lemma convex_hull_3:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1848
  "convex hull {a,b,c} = { u *\<^sub>R a + v *\<^sub>R b + w *\<^sub>R c | u v w. 0 \<le> u \<and> 0 \<le> v \<and> 0 \<le> w \<and> u + v + w = 1}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1849
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1850
  have fin: "finite {a,b,c}" "finite {b,c}" "finite {c}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1851
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1852
  have *: "\<And>x y z ::real. x + y + z = 1 \<longleftrightarrow> x = 1 - y - z"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1853
    by (auto simp: field_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1854
  show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1855
    unfolding convex_hull_finite[OF fin(1)] and convex_hull_finite_step[OF fin(2)] and *
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1856
    unfolding convex_hull_finite_step[OF fin(3)]
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1857
    apply (rule Collect_cong, simp)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1858
    apply auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1859
    apply (rule_tac x=va in exI)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1860
    apply (rule_tac x="u c" in exI, simp)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1861
    apply (rule_tac x="1 - v - w" in exI, simp)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1862
    apply (rule_tac x=v in exI, simp)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1863
    apply (rule_tac x="\<lambda>x. w" in exI, simp)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1864
    done
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1865
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1866
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1867
lemma convex_hull_3_alt:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1868
  "convex hull {a,b,c} = {a + u *\<^sub>R (b - a) + v *\<^sub>R (c - a) | u v.  0 \<le> u \<and> 0 \<le> v \<and> u + v \<le> 1}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1869
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1870
  have *: "\<And>x y z ::real. x + y + z = 1 \<longleftrightarrow> x = 1 - y - z"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1871
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1872
  show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1873
    unfolding convex_hull_3
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1874
    apply (auto simp: *)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1875
    apply (rule_tac x=v in exI)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1876
    apply (rule_tac x=w in exI)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1877
    apply (simp add: algebra_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1878
    apply (rule_tac x=u in exI)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1879
    apply (rule_tac x=v in exI)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1880
    apply (simp add: algebra_simps)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1881
    done
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1882
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1883
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1884
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
  1885
subsection\<^marker>\<open>tag unimportant\<close> \<open>Relations among closure notions and corresponding hulls\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1886
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1887
lemma affine_imp_convex: "affine s \<Longrightarrow> convex s"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1888
  unfolding affine_def convex_def by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1889
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1890
lemma convex_affine_hull [simp]: "convex (affine hull S)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1891
  by (simp add: affine_imp_convex)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1892
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1893
lemma subspace_imp_convex: "subspace s \<Longrightarrow> convex s"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1894
  using subspace_imp_affine affine_imp_convex by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1895
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1896
lemma convex_hull_subset_span: "(convex hull s) \<subseteq> (span s)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1897
  by (metis hull_minimal span_superset subspace_imp_convex subspace_span)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1898
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1899
lemma convex_hull_subset_affine_hull: "(convex hull s) \<subseteq> (affine hull s)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1900
  by (metis affine_affine_hull affine_imp_convex hull_minimal hull_subset)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1901
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1902
lemma aff_dim_convex_hull:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1903
  fixes S :: "'n::euclidean_space set"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1904
  shows "aff_dim (convex hull S) = aff_dim S"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1905
  by (smt (verit) aff_dim_affine_hull aff_dim_subset convex_hull_subset_affine_hull hull_subset)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1906
71242
ec5090faf541 separated Affine theory from Convex
nipkow
parents: 71240
diff changeset
  1907
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1908
subsection \<open>Caratheodory's theorem\<close>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1909
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1910
lemma convex_hull_caratheodory_aff_dim:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1911
  fixes p :: "('a::euclidean_space) set"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1912
  shows "convex hull p =
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1913
    {y. \<exists>S u. finite S \<and> S \<subseteq> p \<and> card S \<le> aff_dim p + 1 \<and>
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1914
        (\<forall>x\<in>S. 0 \<le> u x) \<and> sum u S = 1 \<and> sum (\<lambda>v. u v *\<^sub>R v) S = y}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1915
  unfolding convex_hull_explicit set_eq_iff mem_Collect_eq
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1916
proof (intro allI iffI)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1917
  fix y
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1918
  let ?P = "\<lambda>n. \<exists>S u. finite S \<and> card S = n \<and> S \<subseteq> p \<and> (\<forall>x\<in>S. 0 \<le> u x) \<and>
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1919
    sum u S = 1 \<and> (\<Sum>v\<in>S. u v *\<^sub>R v) = y"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1920
  assume "\<exists>S u. finite S \<and> S \<subseteq> p \<and> (\<forall>x\<in>S. 0 \<le> u x) \<and> sum u S = 1 \<and> (\<Sum>v\<in>S. u v *\<^sub>R v) = y"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1921
  then obtain N where "?P N" by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1922
  then have "\<exists>n\<le>N. (\<forall>k<n. \<not> ?P k) \<and> ?P n"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1923
    by (rule_tac ex_least_nat_le, auto)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1924
  then obtain n where "?P n" and smallest: "\<forall>k<n. \<not> ?P k"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1925
    by blast
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1926
  then obtain S u where S: "finite S" "card S = n" "S\<subseteq>p" 
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1927
    and u: "\<forall>x\<in>S. 0 \<le> u x" "sum u S = 1"  "(\<Sum>v\<in>S. u v *\<^sub>R v) = y" by auto
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1928
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1929
  have "card S \<le> aff_dim p + 1"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1930
  proof (rule ccontr, simp only: not_le)
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1931
    assume "aff_dim p + 1 < card S"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1932
    then have "affine_dependent S"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1933
      by (smt (verit) independent_card_le_aff_dim S(3))
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1934
    then obtain w v where wv: "sum w S = 0" "v\<in>S" "w v \<noteq> 0" "(\<Sum>v\<in>S. w v *\<^sub>R v) = 0"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1935
      using affine_dependent_explicit_finite[OF S(1)] by auto
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1936
    define i where "i = (\<lambda>v. (u v) / (- w v)) ` {v\<in>S. w v < 0}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1937
    define t where "t = Min i"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1938
    have "\<exists>x\<in>S. w x < 0"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1939
      by (smt (verit, best) S(1) sum_pos2 wv)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1940
    then have "i \<noteq> {}" unfolding i_def by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1941
    then have "t \<ge> 0"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1942
      using Min_ge_iff[of i 0] and S(1) u[unfolded le_less]
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1943
      unfolding t_def i_def
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1944
      by (auto simp: divide_le_0_iff)
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1945
    have t: "\<forall>v\<in>S. u v + t * w v \<ge> 0"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1946
    proof
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1947
      fix v
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1948
      assume "v \<in> S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1949
      then have v: "0 \<le> u v"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1950
        using u(1) by blast
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1951
      show "0 \<le> u v + t * w v"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1952
      proof (cases "w v < 0")
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1953
        case False
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1954
        thus ?thesis using v \<open>t\<ge>0\<close> by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1955
      next
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1956
        case True
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1957
        then have "t \<le> u v / (- w v)"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1958
          using \<open>v\<in>S\<close> S unfolding t_def i_def by (auto intro: Min_le)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1959
        then show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1960
          unfolding real_0_le_add_iff
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1961
          using True neg_le_minus_divide_eq by auto
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1962
      qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1963
    qed
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1964
    obtain a where "a \<in> S" and "t = (\<lambda>v. (u v) / (- w v)) a" and "w a < 0"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1965
      using Min_in[OF _ \<open>i\<noteq>{}\<close>] and S(1) unfolding i_def t_def by auto
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1966
    then have a: "a \<in> S" "u a + t * w a = 0" by auto
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1967
    have *: "\<And>f. sum f (S - {a}) = sum f S - ((f a)::'b::ab_group_add)"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1968
      unfolding sum.remove[OF S(1) \<open>a\<in>S\<close>] by auto
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1969
    have "(\<Sum>v\<in>S. u v + t * w v) = 1"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1970
      by (metis add.right_neutral mult_zero_right sum.distrib sum_distrib_left u(2) wv(1))
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1971
    moreover have "(\<Sum>v\<in>S. u v *\<^sub>R v + (t * w v) *\<^sub>R v) - (u a *\<^sub>R a + (t * w a) *\<^sub>R a) = y"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1972
      unfolding sum.distrib u(3) scaleR_scaleR[symmetric] scaleR_right.sum [symmetric] wv(4)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1973
      using a(2) [THEN eq_neg_iff_add_eq_0 [THEN iffD2]] by simp
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1974
    ultimately have "?P (n - 1)"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1975
      apply (rule_tac x="(S - {a})" in exI)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1976
      apply (rule_tac x="\<lambda>v. u v + t * w v" in exI)
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1977
      using S t a
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1978
      apply (auto simp: * scaleR_left_distrib)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1979
      done
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1980
    then show False
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1981
      using smallest[THEN spec[where x="n - 1"]] by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1982
  qed
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1983
  then show "\<exists>S u. finite S \<and> S \<subseteq> p \<and> card S \<le> aff_dim p + 1 \<and>
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1984
      (\<forall>x\<in>S. 0 \<le> u x) \<and> sum u S = 1 \<and> (\<Sum>v\<in>S. u v *\<^sub>R v) = y"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1985
    using S u by auto
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1986
qed auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1987
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1988
lemma caratheodory_aff_dim:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1989
  fixes p :: "('a::euclidean_space) set"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1990
  shows "convex hull p = {x. \<exists>S. finite S \<and> S \<subseteq> p \<and> card S \<le> aff_dim p + 1 \<and> x \<in> convex hull S}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1991
        (is "?lhs = ?rhs")
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1992
proof
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1993
  have "\<And>x S u. \<lbrakk>finite S; S \<subseteq> p; int (card S) \<le> aff_dim p + 1; \<forall>x\<in>S. 0 \<le> u x; sum u S = 1\<rbrakk>
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1994
                \<Longrightarrow> (\<Sum>v\<in>S. u v *\<^sub>R v) \<in> convex hull S"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  1995
    by (metis (mono_tags, lifting) convex_convex_hull convex_explicit hull_subset)
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1996
  then show "?lhs \<subseteq> ?rhs"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1997
    by (subst convex_hull_caratheodory_aff_dim, auto)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  1998
qed (use hull_mono in auto)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  1999
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2000
lemma convex_hull_caratheodory:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2001
  fixes p :: "('a::euclidean_space) set"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2002
  shows "convex hull p =
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2003
            {y. \<exists>S u. finite S \<and> S \<subseteq> p \<and> card S \<le> DIM('a) + 1 \<and>
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2004
              (\<forall>x\<in>S. 0 \<le> u x) \<and> sum u S = 1 \<and> sum (\<lambda>v. u v *\<^sub>R v) S = y}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2005
        (is "?lhs = ?rhs")
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2006
proof (intro set_eqI iffI)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2007
  fix x
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2008
  assume "x \<in> ?lhs" then show "x \<in> ?rhs"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2009
    unfolding convex_hull_caratheodory_aff_dim 
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2010
    using aff_dim_le_DIM [of p] by fastforce
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2011
qed (auto simp: convex_hull_explicit)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2012
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2013
theorem caratheodory:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2014
  "convex hull p =
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2015
    {x::'a::euclidean_space. \<exists>S. finite S \<and> S \<subseteq> p \<and> card S \<le> DIM('a) + 1 \<and> x \<in> convex hull S}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2016
proof safe
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2017
  fix x
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2018
  assume "x \<in> convex hull p"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2019
  then obtain S u where "finite S" "S \<subseteq> p" "card S \<le> DIM('a) + 1"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2020
    "\<forall>x\<in>S. 0 \<le> u x" "sum u S = 1" "(\<Sum>v\<in>S. u v *\<^sub>R v) = x"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2021
    unfolding convex_hull_caratheodory by auto
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2022
  then show "\<exists>S. finite S \<and> S \<subseteq> p \<and> card S \<le> DIM('a) + 1 \<and> x \<in> convex hull S"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2023
    using convex_hull_finite by fastforce
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2024
qed (use hull_mono in force)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2025
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
  2026
subsection\<^marker>\<open>tag unimportant\<close>\<open>Some Properties of subset of standard basis\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2027
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2028
lemma affine_hull_substd_basis:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2029
  assumes "d \<subseteq> Basis"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2030
  shows "affine hull (insert 0 d) = {x::'a::euclidean_space. \<forall>i\<in>Basis. i \<notin> d \<longrightarrow> x\<bullet>i = 0}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2031
  (is "affine hull (insert 0 ?A) = ?B")
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2032
proof -
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2033
  have *: "\<And>A. (+) (0::'a) ` A = A" "\<And>A. (+) (- (0::'a)) ` A = A"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2034
    by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2035
  show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2036
    unfolding affine_hull_insert_span_gen span_substd_basis[OF assms,symmetric] * ..
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2037
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2038
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2039
lemma affine_hull_convex_hull [simp]: "affine hull (convex hull S) = affine hull S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2040
  by (metis Int_absorb1 Int_absorb2 convex_hull_subset_affine_hull hull_hull hull_mono hull_subset)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2041
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2042
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
  2043
subsection\<^marker>\<open>tag unimportant\<close> \<open>Moving and scaling convex hulls\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2044
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2045
lemma convex_hull_set_plus:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2046
  "convex hull (S + T) = convex hull S + convex hull T"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2047
  by (simp add: set_plus_image linear_iff scaleR_right_distrib convex_hull_Times 
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2048
        flip: convex_hull_linear_image)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2049
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2050
lemma translation_eq_singleton_plus: "(\<lambda>x. a + x) ` T = {a} + T"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2051
  unfolding set_plus_def by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2052
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2053
lemma convex_hull_translation:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2054
  "convex hull ((\<lambda>x. a + x) ` S) = (\<lambda>x. a + x) ` (convex hull S)"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2055
  by (simp add: convex_hull_set_plus translation_eq_singleton_plus)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2056
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2057
lemma convex_hull_scaling:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2058
  "convex hull ((\<lambda>x. c *\<^sub>R x) ` S) = (\<lambda>x. c *\<^sub>R x) ` (convex hull S)"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2059
  by (simp add: convex_hull_linear_image)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2060
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2061
lemma convex_hull_affinity:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2062
  "convex hull ((\<lambda>x. a + c *\<^sub>R x) ` S) = (\<lambda>x. a + c *\<^sub>R x) ` (convex hull S)"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2063
  by (metis convex_hull_scaling convex_hull_translation image_image)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2064
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2065
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
  2066
subsection\<^marker>\<open>tag unimportant\<close> \<open>Convexity of cone hulls\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2067
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2068
lemma convex_cone_hull:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2069
  assumes "convex S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2070
  shows "convex (cone hull S)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2071
proof (rule convexI)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2072
  fix x y
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2073
  assume xy: "x \<in> cone hull S" "y \<in> cone hull S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2074
  then have "S \<noteq> {}"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2075
    using cone_hull_empty_iff[of S] by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2076
  fix u v :: real
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2077
  assume uv: "u \<ge> 0" "v \<ge> 0" "u + v = 1"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2078
  then have *: "u *\<^sub>R x \<in> cone hull S" "v *\<^sub>R y \<in> cone hull S"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2079
    by (simp_all add: cone_cone_hull mem_cone uv xy)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2080
  then obtain cx :: real and xx
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2081
      and cy :: real and yy  where x: "u *\<^sub>R x = cx *\<^sub>R xx" "cx \<ge> 0" "xx \<in> S" 
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2082
      and y: "v *\<^sub>R y = cy *\<^sub>R yy" "cy \<ge> 0" "yy \<in> S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2083
    using cone_hull_expl[of S] by auto
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2084
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2085
  have "u *\<^sub>R x + v *\<^sub>R y \<in> cone hull S" if "cx + cy \<le> 0"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2086
    using "*"(1) nless_le that x(2) y by fastforce
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2087
  moreover
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2088
  have "u *\<^sub>R x + v *\<^sub>R y \<in> cone hull S" if "cx + cy > 0"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2089
  proof -
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2090
    have "(cx / (cx + cy)) *\<^sub>R xx + (cy / (cx + cy)) *\<^sub>R yy \<in> S"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2091
      using assms mem_convex_alt[of S xx yy cx cy] x y that by auto
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2092
    then have "cx *\<^sub>R xx + cy *\<^sub>R yy \<in> cone hull S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2093
      using mem_cone_hull[of "(cx/(cx+cy)) *\<^sub>R xx + (cy/(cx+cy)) *\<^sub>R yy" S "cx+cy"] \<open>cx+cy>0\<close>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2094
      by (auto simp: scaleR_right_distrib)
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2095
    then show ?thesis
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2096
      using x y by auto
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2097
  qed
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2098
  moreover have "cx + cy \<le> 0 \<or> cx + cy > 0" by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2099
  ultimately show "u *\<^sub>R x + v *\<^sub>R y \<in> cone hull S" by blast
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2100
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2101
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2102
lemma cone_convex_hull:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2103
  assumes "cone S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2104
  shows "cone (convex hull S)"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2105
  by (metis (no_types, lifting) affine_hull_convex_hull affine_hull_eq_empty assms cone_iff convex_hull_scaling hull_inc)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2106
78656
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2107
section \<open>Conic sets and conic hull\<close>
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2108
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2109
definition conic :: "'a::real_vector set \<Rightarrow> bool"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2110
  where "conic S \<equiv> \<forall>x c. x \<in> S \<longrightarrow> 0 \<le> c \<longrightarrow> (c *\<^sub>R x) \<in> S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2111
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2112
lemma conicD: "\<lbrakk>conic S; x \<in> S; 0 \<le> c\<rbrakk> \<Longrightarrow> (c *\<^sub>R x) \<in> S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2113
  by (meson conic_def)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2114
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2115
lemma subspace_imp_conic: "subspace S \<Longrightarrow> conic S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2116
  by (simp add: conic_def subspace_def)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2117
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2118
lemma conic_empty [simp]: "conic {}"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2119
  using conic_def by blast
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2120
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2121
lemma conic_UNIV: "conic UNIV"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2122
  by (simp add: conic_def)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2123
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2124
lemma conic_Inter: "(\<And>S. S \<in> \<F> \<Longrightarrow> conic S) \<Longrightarrow> conic(\<Inter>\<F>)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2125
  by (simp add: conic_def)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2126
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2127
lemma conic_linear_image:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2128
   "\<lbrakk>conic S; linear f\<rbrakk> \<Longrightarrow> conic(f ` S)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2129
  by (smt (verit) conic_def image_iff linear.scaleR)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2130
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2131
lemma conic_linear_image_eq:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2132
   "\<lbrakk>linear f; inj f\<rbrakk> \<Longrightarrow> conic (f ` S) \<longleftrightarrow> conic S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2133
  by (smt (verit) conic_def conic_linear_image inj_image_mem_iff linear_cmul)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2134
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2135
lemma conic_mul: "\<lbrakk>conic S; x \<in> S; 0 \<le> c\<rbrakk> \<Longrightarrow> (c *\<^sub>R x) \<in> S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2136
  using conic_def by blast
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2137
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2138
lemma conic_conic_hull: "conic(conic hull S)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2139
  by (metis (no_types, lifting) conic_Inter hull_def mem_Collect_eq)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2140
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2141
lemma conic_hull_eq: "(conic hull S = S) \<longleftrightarrow> conic S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2142
  by (metis conic_conic_hull hull_same)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2143
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2144
lemma conic_hull_UNIV [simp]: "conic hull UNIV = UNIV"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2145
  by simp
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2146
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2147
lemma conic_negations: "conic S \<Longrightarrow> conic (image uminus S)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2148
  by (auto simp: conic_def image_iff)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2149
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2150
lemma conic_span [iff]: "conic(span S)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2151
  by (simp add: subspace_imp_conic)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2152
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2153
lemma conic_hull_explicit:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2154
   "conic hull S = {c *\<^sub>R x| c x. 0 \<le> c \<and> x \<in> S}"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2155
  proof (rule hull_unique)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2156
    show "S \<subseteq> {c *\<^sub>R x |c x. 0 \<le> c \<and> x \<in> S}"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2157
      by (metis (no_types) cone_hull_expl hull_subset)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2158
  show "conic {c *\<^sub>R x |c x. 0 \<le> c \<and> x \<in> S}"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2159
    using mult_nonneg_nonneg by (force simp: conic_def)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2160
qed (auto simp: conic_def)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2161
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2162
lemma conic_hull_as_image:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2163
   "conic hull S = (\<lambda>z. fst z *\<^sub>R snd z) ` ({0..} \<times> S)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2164
  by (force simp: conic_hull_explicit)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2165
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2166
lemma conic_hull_linear_image:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2167
   "linear f \<Longrightarrow> conic hull f ` S = f ` (conic hull S)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2168
  by (force simp: conic_hull_explicit image_iff set_eq_iff linear_scale) 
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2169
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2170
lemma conic_hull_image_scale:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2171
  assumes "\<And>x. x \<in> S \<Longrightarrow> 0 < c x"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2172
  shows   "conic hull (\<lambda>x. c x *\<^sub>R x) ` S = conic hull S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2173
proof
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2174
  show "conic hull (\<lambda>x. c x *\<^sub>R x) ` S \<subseteq> conic hull S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2175
  proof (rule hull_minimal)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2176
    show "(\<lambda>x. c x *\<^sub>R x) ` S \<subseteq> conic hull S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2177
      using assms conic_hull_explicit by fastforce
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2178
  qed (simp add: conic_conic_hull)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2179
  show "conic hull S \<subseteq> conic hull (\<lambda>x. c x *\<^sub>R x) ` S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2180
  proof (rule hull_minimal)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2181
    show "S \<subseteq> conic hull (\<lambda>x. c x *\<^sub>R x) ` S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2182
    proof clarsimp
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2183
      fix x
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2184
      assume "x \<in> S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2185
      then have "x = inverse(c x) *\<^sub>R c x *\<^sub>R x"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2186
        using assms by fastforce
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2187
      then show "x \<in> conic hull (\<lambda>x. c x *\<^sub>R x) ` S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2188
        by (smt (verit, best) \<open>x \<in> S\<close> assms conic_conic_hull conic_mul hull_inc image_eqI inverse_nonpositive_iff_nonpositive)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2189
    qed
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2190
  qed (simp add: conic_conic_hull)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2191
qed
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2192
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2193
lemma convex_conic_hull:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2194
  assumes "convex S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2195
  shows "convex (conic hull S)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2196
proof (clarsimp simp add: conic_hull_explicit convex_alt)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2197
  fix c x d y and u :: real
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2198
  assume \<section>: "(0::real) \<le> c" "x \<in> S" "(0::real) \<le> d" "y \<in> S" "0 \<le> u" "u \<le> 1"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2199
  show "\<exists>c'' x''. ((1 - u) * c) *\<^sub>R x + (u * d) *\<^sub>R y = c'' *\<^sub>R x'' \<and> 0 \<le> c'' \<and> x'' \<in> S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2200
  proof (cases "(1 - u) * c = 0")
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2201
    case True
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2202
    with \<open>0 \<le> d\<close> \<open>y \<in> S\<close>\<open>0 \<le> u\<close>  
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2203
    show ?thesis by force
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2204
  next
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2205
    case False
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2206
    define \<xi> where "\<xi> \<equiv> (1 - u) * c + u * d"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2207
    have *: "c * u \<le> c"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2208
      by (simp add: "\<section>" mult_left_le)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2209
    have "\<xi> > 0"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2210
      using False \<section> by (smt (verit, best) \<xi>_def split_mult_pos_le)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2211
    then have **: "c + d * u = \<xi> + c * u"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2212
      by (simp add: \<xi>_def mult.commute right_diff_distrib')
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2213
    show ?thesis
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2214
    proof (intro exI conjI)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2215
      show "0 \<le> \<xi>"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2216
        using \<open>0 < \<xi>\<close> by auto
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2217
      show "((1 - u) * c) *\<^sub>R x + (u * d) *\<^sub>R y = \<xi> *\<^sub>R (((1 - u) * c / \<xi>) *\<^sub>R x + (u * d / \<xi>) *\<^sub>R y)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2218
        using \<open>\<xi> > 0\<close> by (simp add: algebra_simps diff_divide_distrib)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2219
      show "((1 - u) * c / \<xi>) *\<^sub>R x + (u * d / \<xi>) *\<^sub>R y \<in> S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2220
        using \<open>0 < \<xi>\<close> 
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2221
        by (intro convexD [OF assms]) (auto simp: \<section> field_split_simps * **)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2222
    qed
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2223
  qed
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2224
qed
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2225
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2226
lemma conic_halfspace_le: "conic {x. a \<bullet> x \<le> 0}"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2227
  by (auto simp: conic_def mult_le_0_iff)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2228
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2229
lemma conic_halfspace_ge: "conic {x. a \<bullet> x \<ge> 0}"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2230
  by (auto simp: conic_def mult_le_0_iff)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2231
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2232
lemma conic_hull_empty [simp]: "conic hull {} = {}"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2233
  by (simp add: conic_hull_eq)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2234
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2235
lemma conic_contains_0: "conic S \<Longrightarrow> (0 \<in> S \<longleftrightarrow> S \<noteq> {})"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2236
  by (simp add: Convex.cone_def cone_contains_0 conic_def)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2237
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2238
lemma conic_hull_eq_empty: "conic hull S = {} \<longleftrightarrow> (S = {})"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2239
  using conic_hull_explicit by fastforce
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2240
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2241
lemma conic_sums: "\<lbrakk>conic S; conic T\<rbrakk> \<Longrightarrow> conic (\<Union>x\<in> S. \<Union>y \<in> T. {x + y})"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2242
  by (simp add: conic_def) (metis scaleR_right_distrib)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2243
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2244
lemma conic_Times: "\<lbrakk>conic S; conic T\<rbrakk> \<Longrightarrow> conic(S \<times> T)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2245
  by (auto simp: conic_def)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2246
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2247
lemma conic_Times_eq:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2248
   "conic(S \<times> T) \<longleftrightarrow> S = {} \<or> T = {} \<or> conic S \<and> conic T" (is "?lhs = ?rhs")
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2249
proof
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2250
  show "?lhs \<Longrightarrow> ?rhs"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2251
    by (force simp: conic_def)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2252
  show "?rhs \<Longrightarrow> ?lhs"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2253
    by (force simp: conic_Times)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2254
qed
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2255
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2256
lemma conic_hull_0 [simp]: "conic hull {0} = {0}"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2257
  by (simp add: conic_hull_eq subspace_imp_conic)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2258
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2259
lemma conic_hull_contains_0 [simp]: "0 \<in> conic hull S \<longleftrightarrow> (S \<noteq> {})"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2260
  by (simp add: conic_conic_hull conic_contains_0 conic_hull_eq_empty)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2261
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2262
lemma conic_hull_eq_sing:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2263
  "conic hull S = {x} \<longleftrightarrow> S = {0} \<and> x = 0"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2264
proof
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2265
  show "conic hull S = {x} \<Longrightarrow> S = {0} \<and> x = 0"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2266
    by (metis conic_conic_hull conic_contains_0 conic_def conic_hull_eq hull_inc insert_not_empty singleton_iff)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2267
qed simp
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2268
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2269
lemma conic_hull_Int_affine_hull:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2270
  assumes "T \<subseteq> S" "0 \<notin> affine hull S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2271
  shows "(conic hull T) \<inter> (affine hull S) = T"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2272
proof -
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2273
  have TaffS: "T \<subseteq> affine hull S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2274
    using \<open>T \<subseteq> S\<close> hull_subset by fastforce
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2275
  moreover
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2276
  have "conic hull T \<inter> affine hull S \<subseteq> T"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2277
  proof (clarsimp simp: conic_hull_explicit)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2278
    fix c x
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2279
    assume "c *\<^sub>R x \<in> affine hull S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2280
      and "0 \<le> c"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2281
      and "x \<in> T"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2282
    show "c *\<^sub>R x \<in> T"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2283
    proof (cases "c=1")
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2284
      case True
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2285
      then show ?thesis
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2286
        by (simp add: \<open>x \<in> T\<close>)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2287
    next
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2288
      case False
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2289
      then have "x /\<^sub>R (1 - c) = x + (c * inverse (1 - c)) *\<^sub>R x"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2290
        by (smt (verit, ccfv_SIG) diff_add_cancel mult.commute real_vector_affinity_eq scaleR_collapse scaleR_scaleR)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2291
      then have "0 = inverse(1 - c) *\<^sub>R c *\<^sub>R x + (1 - inverse(1 - c)) *\<^sub>R x"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2292
        by (simp add: algebra_simps)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2293
      then have "0 \<in> affine hull S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2294
        by (smt (verit) \<open>c *\<^sub>R x \<in> affine hull S\<close> \<open>x \<in> T\<close> affine_affine_hull TaffS in_mono mem_affine)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2295
      then show ?thesis
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2296
        using assms by auto        
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2297
    qed
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2298
  qed
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2299
  ultimately show ?thesis
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2300
    by (auto simp: hull_inc)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2301
qed
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2302
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2303
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2304
section \<open>Convex cones and corresponding hulls\<close>
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2305
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2306
definition convex_cone :: "'a::real_vector set \<Rightarrow> bool"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2307
  where "convex_cone \<equiv> \<lambda>S. S \<noteq> {} \<and> convex S \<and> conic S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2308
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2309
lemma convex_cone_iff:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2310
   "convex_cone S \<longleftrightarrow>
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2311
        0 \<in> S \<and> (\<forall>x \<in> S. \<forall>y \<in> S. x + y \<in> S) \<and> (\<forall>x \<in> S. \<forall>c\<ge>0. c *\<^sub>R x \<in> S)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2312
    by (metis cone_def conic_contains_0 conic_def convex_cone convex_cone_def)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2313
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2314
lemma convex_cone_add: "\<lbrakk>convex_cone S; x \<in> S; y \<in> S\<rbrakk> \<Longrightarrow> x+y \<in> S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2315
  by (simp add: convex_cone_iff)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2316
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2317
lemma convex_cone_scaleR: "\<lbrakk>convex_cone S; 0 \<le> c; x \<in> S\<rbrakk> \<Longrightarrow> c *\<^sub>R x \<in> S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2318
  by (simp add: convex_cone_iff)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2319
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2320
lemma convex_cone_nonempty: "convex_cone S \<Longrightarrow> S \<noteq> {}"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2321
  by (simp add: convex_cone_def)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2322
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2323
lemma convex_cone_linear_image:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2324
   "convex_cone S \<and> linear f \<Longrightarrow> convex_cone(f ` S)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2325
  by (simp add: conic_linear_image convex_cone_def convex_linear_image)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2326
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2327
lemma convex_cone_linear_image_eq:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2328
   "\<lbrakk>linear f; inj f\<rbrakk> \<Longrightarrow> (convex_cone(f ` S) \<longleftrightarrow> convex_cone S)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2329
  by (simp add: conic_linear_image_eq convex_cone_def)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2330
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2331
lemma convex_cone_halfspace_ge: "convex_cone {x. a \<bullet> x \<ge> 0}"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2332
  by (simp add: convex_cone_iff inner_simps(2))
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2333
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2334
lemma convex_cone_halfspace_le: "convex_cone {x. a \<bullet> x \<le> 0}"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2335
  by (simp add: convex_cone_iff inner_right_distrib mult_nonneg_nonpos)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2336
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2337
lemma convex_cone_contains_0: "convex_cone S \<Longrightarrow> 0 \<in> S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2338
  using convex_cone_iff by blast
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2339
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2340
lemma convex_cone_Inter:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2341
   "(\<And>S. S \<in> f \<Longrightarrow> convex_cone S) \<Longrightarrow> convex_cone(\<Inter> f)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2342
  by (simp add: convex_cone_iff)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2343
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2344
lemma convex_cone_convex_cone_hull: "convex_cone(convex_cone hull S)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2345
  by (metis (no_types, lifting) convex_cone_Inter hull_def mem_Collect_eq)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2346
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2347
lemma convex_convex_cone_hull: "convex(convex_cone hull S)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2348
  by (meson convex_cone_convex_cone_hull convex_cone_def)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2349
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2350
lemma conic_convex_cone_hull: "conic(convex_cone hull S)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2351
  by (metis convex_cone_convex_cone_hull convex_cone_def)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2352
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2353
lemma convex_cone_hull_nonempty: "convex_cone hull S \<noteq> {}"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2354
  by (simp add: convex_cone_convex_cone_hull convex_cone_nonempty)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2355
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2356
lemma convex_cone_hull_contains_0: "0 \<in> convex_cone hull S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2357
  by (simp add: convex_cone_contains_0 convex_cone_convex_cone_hull)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2358
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2359
lemma convex_cone_hull_add:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2360
   "\<lbrakk>x \<in> convex_cone hull S; y \<in> convex_cone hull S\<rbrakk> \<Longrightarrow> x + y \<in> convex_cone hull S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2361
  by (simp add: convex_cone_add convex_cone_convex_cone_hull)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2362
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2363
lemma convex_cone_hull_mul:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2364
   "\<lbrakk>x \<in> convex_cone hull S; 0 \<le> c\<rbrakk> \<Longrightarrow> (c *\<^sub>R x) \<in> convex_cone hull S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2365
  by (simp add: conic_convex_cone_hull conic_mul)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2366
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2367
thm convex_sums
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2368
lemma convex_cone_sums:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2369
   "\<lbrakk>convex_cone S; convex_cone T\<rbrakk> \<Longrightarrow> convex_cone (\<Union>x\<in> S. \<Union>y \<in> T. {x + y})"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2370
  by (simp add: convex_cone_def conic_sums convex_sums)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2371
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2372
lemma convex_cone_Times:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2373
   "\<lbrakk>convex_cone S; convex_cone T\<rbrakk> \<Longrightarrow> convex_cone(S \<times> T)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2374
  by (simp add: conic_Times convex_Times convex_cone_def)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2375
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2376
lemma convex_cone_Times_D1: "convex_cone (S \<times> T) \<Longrightarrow> convex_cone S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2377
  by (metis Times_empty conic_Times_eq convex_cone_def convex_convex_hull convex_hull_Times hull_same times_eq_iff)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2378
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2379
lemma convex_cone_Times_eq:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2380
   "convex_cone(S \<times> T) \<longleftrightarrow> convex_cone S \<and> convex_cone T" 
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2381
proof (cases "S={} \<or> T={}")
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2382
  case True
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2383
  then show ?thesis 
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2384
    by (auto dest: convex_cone_nonempty)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2385
next
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2386
  case False
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2387
  then have "convex_cone (S \<times> T) \<Longrightarrow> convex_cone T"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2388
    by (metis conic_Times_eq convex_cone_def convex_convex_hull convex_hull_Times hull_same times_eq_iff)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2389
  then show ?thesis
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2390
    using convex_cone_Times convex_cone_Times_D1 by blast 
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2391
qed
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2392
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2393
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2394
lemma convex_cone_hull_Un:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2395
  "convex_cone hull(S \<union> T) = (\<Union>x \<in> convex_cone hull S. \<Union>y \<in> convex_cone hull T. {x + y})"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2396
  (is "?lhs = ?rhs")
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2397
proof
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2398
  show "?lhs \<subseteq> ?rhs"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2399
  proof (rule hull_minimal)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2400
    show "S \<union> T \<subseteq> (\<Union>x\<in>convex_cone hull S. \<Union>y\<in>convex_cone hull T. {x + y})"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2401
      apply (clarsimp simp: subset_iff)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2402
      by (metis add_0 convex_cone_hull_contains_0 group_cancel.rule0 hull_inc)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2403
    show "convex_cone (\<Union>x\<in>convex_cone hull S. \<Union>y\<in>convex_cone hull T. {x + y})"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2404
      by (simp add: convex_cone_convex_cone_hull convex_cone_sums)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2405
  qed
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2406
next
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2407
  show "?rhs \<subseteq> ?lhs"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2408
    by clarify (metis convex_cone_hull_add hull_mono le_sup_iff subsetD subsetI)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2409
qed
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2410
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2411
lemma convex_cone_singleton [iff]: "convex_cone {0}"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2412
  by (simp add: convex_cone_iff)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2413
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2414
lemma convex_hull_subset_convex_cone_hull:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2415
   "convex hull S \<subseteq> convex_cone hull S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2416
  by (simp add: convex_convex_cone_hull hull_minimal hull_subset)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2417
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2418
lemma conic_hull_subset_convex_cone_hull:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2419
   "conic hull S \<subseteq> convex_cone hull S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2420
  by (simp add: conic_convex_cone_hull hull_minimal hull_subset)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2421
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2422
lemma subspace_imp_convex_cone: "subspace S \<Longrightarrow> convex_cone S"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2423
  by (simp add: convex_cone_iff subspace_def)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2424
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2425
lemma convex_cone_span: "convex_cone(span S)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2426
  by (simp add: subspace_imp_convex_cone)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2427
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2428
lemma convex_cone_negations:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2429
   "convex_cone S \<Longrightarrow> convex_cone (image uminus S)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2430
  by (simp add: convex_cone_linear_image module_hom_uminus)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2431
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2432
lemma subspace_convex_cone_symmetric:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2433
   "subspace S \<longleftrightarrow> convex_cone S \<and> (\<forall>x \<in> S. -x \<in> S)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2434
  by (smt (verit) convex_cone_iff scaleR_left.minus subspace_def subspace_neg)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2435
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2436
lemma convex_cone_hull_separate_nonempty:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2437
  assumes "S \<noteq> {}"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2438
  shows "convex_cone hull S = conic hull (convex hull S)"   (is "?lhs = ?rhs")
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2439
proof
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2440
  show "?lhs \<subseteq> ?rhs"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2441
    by (metis assms conic_conic_hull convex_cone_def convex_conic_hull convex_convex_hull hull_subset subset_empty subset_hull)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2442
  show "?rhs \<subseteq> ?lhs"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2443
    by (simp add: conic_convex_cone_hull convex_hull_subset_convex_cone_hull subset_hull)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2444
qed
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2445
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2446
lemma convex_cone_hull_empty [simp]: "convex_cone hull {} = {0}"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2447
  by (metis convex_cone_hull_contains_0 convex_cone_singleton hull_redundant hull_same)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2448
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2449
lemma convex_cone_hull_separate:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2450
   "convex_cone hull S = insert 0 (conic hull (convex hull S))"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2451
proof(cases "S={}")
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2452
  case False
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2453
  then show ?thesis
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2454
    using convex_cone_hull_contains_0 convex_cone_hull_separate_nonempty by blast
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2455
qed auto
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2456
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2457
lemma convex_cone_hull_convex_hull_nonempty:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2458
   "S \<noteq> {} \<Longrightarrow> convex_cone hull S = (\<Union>x \<in> convex hull S. \<Union>c\<in>{0..}. {c *\<^sub>R x})"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2459
  by (force simp: convex_cone_hull_separate_nonempty conic_hull_as_image)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2460
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2461
lemma convex_cone_hull_convex_hull:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2462
   "convex_cone hull S = insert 0 (\<Union>x \<in> convex hull S. \<Union>c\<in>{0..}. {c *\<^sub>R x})"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2463
  by (force simp: convex_cone_hull_separate conic_hull_as_image)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2464
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2465
lemma convex_cone_hull_linear_image:
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2466
   "linear f \<Longrightarrow> convex_cone hull (f ` S) = image f (convex_cone hull S)"
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2467
  by (metis (no_types, lifting) conic_hull_linear_image convex_cone_hull_separate convex_hull_linear_image image_insert linear_0)
4da1e18a9633 Loads of new material related to porting the Euler Polyhedron Formula from HOL Light
paulson <lp15@cam.ac.uk>
parents: 78475
diff changeset
  2468
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2469
subsection \<open>Radon's theorem\<close>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2470
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2471
text "Formalized by Lars Schewe."
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2472
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2473
lemma Radon_ex_lemma:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2474
  assumes "finite c" "affine_dependent c"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2475
  shows "\<exists>u. sum u c = 0 \<and> (\<exists>v\<in>c. u v \<noteq> 0) \<and> sum (\<lambda>v. u v *\<^sub>R v) c = 0"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2476
  using affine_dependent_explicit_finite assms by blast
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2477
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2478
lemma Radon_s_lemma:
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2479
  assumes "finite S"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2480
    and "sum f S = (0::real)"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2481
  shows "sum f {x\<in>S. 0 < f x} = - sum f {x\<in>S. f x < 0}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2482
proof -
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2483
  have "\<And>x. (if f x < 0 then f x else 0) + (if 0 < f x then f x else 0) = f x"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2484
    by auto
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2485
  then show ?thesis
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2486
    using assms by (simp add: sum.inter_filter flip: sum.distrib add_eq_0_iff)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2487
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2488
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2489
lemma Radon_v_lemma:
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2490
  assumes "finite S"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2491
    and "sum f S = 0"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2492
    and "\<forall>x. g x = (0::real) \<longrightarrow> f x = (0::'a::euclidean_space)"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2493
  shows "(sum f {x\<in>S. 0 < g x}) = - sum f {x\<in>S. g x < 0}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2494
proof -
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2495
  have "\<And>x. (if 0 < g x then f x else 0) + (if g x < 0 then f x else 0) = f x"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2496
    using assms by auto
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2497
  then show ?thesis
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2498
    using assms by (simp add: sum.inter_filter eq_neg_iff_add_eq_0 flip: sum.distrib add_eq_0_iff)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2499
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2500
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2501
lemma Radon_partition:
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2502
  assumes "finite C" "affine_dependent C"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2503
  shows "\<exists>M P. M \<inter> P = {} \<and> M \<union> P = C \<and> (convex hull M) \<inter> (convex hull P) \<noteq> {}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2504
proof -
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2505
  obtain u v where uv: "sum u C = 0" "v\<in>C" "u v \<noteq> 0"  "(\<Sum>v\<in>C. u v *\<^sub>R v) = 0"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2506
    using Radon_ex_lemma[OF assms] by auto
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2507
  have fin: "finite {x \<in> C. 0 < u x}" "finite {x \<in> C. 0 > u x}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2508
    using assms(1) by auto
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2509
  define z  where "z = inverse (sum u {x\<in>C. u x > 0}) *\<^sub>R sum (\<lambda>x. u x *\<^sub>R x) {x\<in>C. u x > 0}"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2510
  have "sum u {x \<in> C. 0 < u x} \<noteq> 0"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2511
  proof (cases "u v \<ge> 0")
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2512
    case False
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2513
    then have "u v < 0" by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2514
    then show ?thesis
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2515
      by (smt (verit) assms(1) fin(1) mem_Collect_eq sum.neutral_const sum_mono_inv uv)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2516
  next
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2517
    case True
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2518
    with fin uv show "sum u {x \<in> C. 0 < u x} \<noteq> 0"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2519
      by (smt (verit) fin(1) mem_Collect_eq sum_nonneg_eq_0_iff uv)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2520
  qed
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2521
  then have *: "sum u {x\<in>C. u x > 0} > 0"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2522
    unfolding less_le by (metis (no_types, lifting) mem_Collect_eq sum_nonneg)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2523
  moreover have "sum u ({x \<in> C. 0 < u x} \<union> {x \<in> C. u x < 0}) = sum u C"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2524
    "(\<Sum>x\<in>{x \<in> C. 0 < u x} \<union> {x \<in> C. u x < 0}. u x *\<^sub>R x) = (\<Sum>x\<in>C. u x *\<^sub>R x)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2525
    using assms(1)
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2526
    by (rule_tac[!] sum.mono_neutral_left, auto)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2527
  then have "sum u {x \<in> C. 0 < u x} = - sum u {x \<in> C. 0 > u x}"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2528
    "(\<Sum>x\<in>{x \<in> C. 0 < u x}. u x *\<^sub>R x) = - (\<Sum>x\<in>{x \<in> C. 0 > u x}. u x *\<^sub>R x)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2529
    unfolding eq_neg_iff_add_eq_0
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2530
    using uv(1,4)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2531
    by (auto simp: sum.union_inter_neutral[OF fin, symmetric])
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2532
  moreover have "\<forall>x\<in>{v \<in> C. u v < 0}. 0 \<le> inverse (sum u {x \<in> C. 0 < u x}) * - u x"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2533
    using * by (fastforce intro: mult_nonneg_nonneg)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2534
  ultimately have "z \<in> convex hull {v \<in> C. u v \<le> 0}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2535
    unfolding convex_hull_explicit mem_Collect_eq
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2536
    apply (rule_tac x="{v \<in> C. u v < 0}" in exI)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2537
    apply (rule_tac x="\<lambda>y. inverse (sum u {x\<in>C. u x > 0}) * - u y" in exI)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2538
    using assms(1) unfolding scaleR_scaleR[symmetric] scaleR_right.sum [symmetric] 
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2539
    by (auto simp: z_def sum_negf sum_distrib_left[symmetric])
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2540
  moreover have "\<forall>x\<in>{v \<in> C. 0 < u v}. 0 \<le> inverse (sum u {x \<in> C. 0 < u x}) * u x"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2541
    using * by (fastforce intro: mult_nonneg_nonneg)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2542
  then have "z \<in> convex hull {v \<in> C. u v > 0}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2543
    unfolding convex_hull_explicit mem_Collect_eq
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2544
    apply (rule_tac x="{v \<in> C. 0 < u v}" in exI)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2545
    apply (rule_tac x="\<lambda>y. inverse (sum u {x\<in>C. u x > 0}) * u y" in exI)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2546
    using assms(1)
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2547
    unfolding scaleR_scaleR[symmetric] scaleR_right.sum [symmetric]
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2548
    using * by (auto simp: z_def sum_negf sum_distrib_left[symmetric])
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2549
  ultimately show ?thesis
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2550
    apply (rule_tac x="{v\<in>C. u v \<le> 0}" in exI)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2551
    apply (rule_tac x="{v\<in>C. u v > 0}" in exI, auto)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2552
    done
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2553
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2554
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2555
theorem Radon:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2556
  assumes "affine_dependent c"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2557
  obtains M P where "M \<subseteq> c" "P \<subseteq> c" "M \<inter> P = {}" "(convex hull M) \<inter> (convex hull P) \<noteq> {}"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2558
  by (smt (verit) Radon_partition affine_dependent_explicit affine_dependent_explicit_finite assms le_sup_iff)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2559
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2560
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2561
subsection \<open>Helly's theorem\<close>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2562
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2563
lemma Helly_induct:
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2564
  fixes \<F> :: "'a::euclidean_space set set"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2565
  assumes "card \<F> = n"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2566
    and "n \<ge> DIM('a) + 1"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2567
    and "\<forall>S\<in>\<F>. convex S" "\<forall>T\<subseteq>\<F>. card T = DIM('a) + 1 \<longrightarrow> \<Inter>T \<noteq> {}"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2568
  shows "\<Inter>\<F> \<noteq> {}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2569
  using assms
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2570
proof (induction n arbitrary: \<F>)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2571
  case 0
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2572
  then show ?case by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2573
next
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2574
  case (Suc n)
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2575
  have "finite \<F>"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2576
    using \<open>card \<F> = Suc n\<close> by (auto intro: card_ge_0_finite)
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2577
  show "\<Inter>\<F> \<noteq> {}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2578
  proof (cases "n = DIM('a)")
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2579
    case True
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2580
    then show ?thesis
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2581
      by (simp add: Suc.prems)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2582
  next
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2583
    case False
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2584
    have "\<Inter>(\<F> - {S}) \<noteq> {}" if "S \<in> \<F>" for S
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2585
    proof (rule Suc.IH[rule_format])
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2586
      show "card (\<F> - {S}) = n"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2587
        by (simp add: Suc.prems(1) \<open>finite \<F>\<close> that)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2588
      show "DIM('a) + 1 \<le> n"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2589
        using False Suc.prems(2) by linarith
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2590
      show "\<And>t. \<lbrakk>t \<subseteq> \<F> - {S}; card t = DIM('a) + 1\<rbrakk> \<Longrightarrow> \<Inter>t \<noteq> {}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2591
        by (simp add: Suc.prems(4) subset_Diff_insert)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2592
    qed (use Suc in auto)
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2593
    then have "\<forall>S\<in>\<F>. \<exists>x. x \<in> \<Inter>(\<F> - {S})"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2594
      by blast
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2595
    then obtain X where X: "\<And>S. S\<in>\<F> \<Longrightarrow> X S \<in> \<Inter>(\<F> - {S})"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2596
      by metis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2597
    show ?thesis
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2598
    proof (cases "inj_on X \<F>")
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2599
      case False
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2600
      then obtain S T where "S\<noteq>T" and st: "S\<in>\<F>" "T\<in>\<F>" "X S = X T"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2601
        unfolding inj_on_def by auto
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2602
      then have *: "\<Inter>\<F> = \<Inter>(\<F> - {S}) \<inter> \<Inter>(\<F> - {T})" by auto
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2603
      show ?thesis
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2604
        by (metis "*" X disjoint_iff_not_equal st)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2605
    next
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2606
      case True
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2607
      then obtain M P where mp: "M \<inter> P = {}" "M \<union> P = X ` \<F>" "convex hull M \<inter> convex hull P \<noteq> {}"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2608
        using Radon_partition[of "X ` \<F>"] and affine_dependent_biggerset[of "X ` \<F>"]
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2609
        unfolding card_image[OF True] and \<open>card \<F> = Suc n\<close>
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2610
        using Suc(3) \<open>finite \<F>\<close> and False
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2611
        by auto
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2612
      have "M \<subseteq> X ` \<F>" "P \<subseteq> X ` \<F>"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2613
        using mp(2) by auto
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2614
      then obtain \<G> \<H> where gh:"M = X ` \<G>" "P = X ` \<H>" "\<G> \<subseteq> \<F>" "\<H> \<subseteq> \<F>"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2615
        unfolding subset_image_iff by auto
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2616
      then have "\<F> \<union> (\<G> \<union> \<H>) = \<F>" by auto
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2617
      then have \<F>: "\<F> = \<G> \<union> \<H>"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2618
        using inj_on_Un_image_eq_iff[of X \<F> "\<G> \<union> \<H>"] and True
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2619
        unfolding mp(2)[unfolded image_Un[symmetric] gh]
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2620
        by auto
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2621
      have *: "\<G> \<inter> \<H> = {}"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2622
        using gh local.mp(1) by blast
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2623
      have "convex hull (X ` \<H>) \<subseteq> \<Inter>\<G>" "convex hull (X ` \<G>) \<subseteq> \<Inter>\<H>"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2624
        by (rule hull_minimal; use X * \<F> in \<open>auto simp: Suc.prems(3) convex_Inter\<close>)+
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2625
      then show ?thesis
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2626
        unfolding \<F> using mp(3)[unfolded gh] by blast
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2627
    qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2628
  qed 
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2629
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2630
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2631
theorem Helly:
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2632
  fixes \<F> :: "'a::euclidean_space set set"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2633
  assumes "card \<F> \<ge> DIM('a) + 1" "\<forall>s\<in>\<F>. convex s"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2634
    and "\<And>t. \<lbrakk>t\<subseteq>\<F>; card t = DIM('a) + 1\<rbrakk> \<Longrightarrow> \<Inter>t \<noteq> {}"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2635
  shows "\<Inter>\<F> \<noteq> {}"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2636
  using Helly_induct assms by blast
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2637
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2638
subsection \<open>Epigraphs of convex functions\<close>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2639
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
  2640
definition\<^marker>\<open>tag important\<close> "epigraph S (f :: _ \<Rightarrow> real) = {xy. fst xy \<in> S \<and> f (fst xy) \<le> snd xy}"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2641
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2642
lemma mem_epigraph: "(x, y) \<in> epigraph S f \<longleftrightarrow> x \<in> S \<and> f x \<le> y"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2643
  unfolding epigraph_def by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2644
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
  2645
lemma convex_epigraph: "convex (epigraph S f) \<longleftrightarrow> convex_on S f"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2646
proof safe
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2647
  assume L: "convex (epigraph S f)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2648
  then show "convex_on S f"
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
  2649
    by (fastforce simp: convex_def convex_on_def epigraph_def)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2650
next
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
  2651
  assume "convex_on S f"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2652
  then show "convex (epigraph S f)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2653
    unfolding convex_def convex_on_def epigraph_def
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2654
    apply safe
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2655
     apply (rule_tac [2] y="u * f a + v * f aa" in order_trans)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2656
      apply (auto intro!:mult_left_mono add_mono)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2657
    done
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2658
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2659
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
  2660
lemma convex_epigraphI: "convex_on S f \<Longrightarrow> convex (epigraph S f)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2661
  unfolding convex_epigraph by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2662
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
  2663
lemma convex_epigraph_convex: "convex_on S f \<longleftrightarrow> convex(epigraph S f)"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2664
  by (simp add: convex_epigraph)
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2665
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2666
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
  2667
subsubsection\<^marker>\<open>tag unimportant\<close> \<open>Use this to derive general bound property of convex function\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2668
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2669
lemma convex_on:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2670
  assumes "convex S"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2671
  shows "convex_on S f \<longleftrightarrow>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2672
    (\<forall>k u x. (\<forall>i\<in>{1..k::nat}. 0 \<le> u i \<and> x i \<in> S) \<and> sum u {1..k} = 1 \<longrightarrow>
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2673
      f (sum (\<lambda>i. u i *\<^sub>R x i) {1..k}) \<le> sum (\<lambda>i. u i * f(x i)) {1..k})"
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2674
  (is "?lhs = (\<forall>k u x. ?rhs k u x)")
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2675
proof
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2676
  assume ?lhs 
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2677
  then have \<section>: "convex {xy. fst xy \<in> S \<and> f (fst xy) \<le> snd xy}"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2678
    by (metis assms convex_epigraph epigraph_def)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2679
  show "\<forall>k u x. ?rhs k u x"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2680
  proof (intro allI)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2681
    fix k u x
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2682
    show "?rhs k u x"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2683
      using \<section>
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2684
      unfolding  convex mem_Collect_eq fst_sum snd_sum 
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2685
      apply safe
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2686
      apply (drule_tac x=k in spec)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2687
      apply (drule_tac x=u in spec)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2688
      apply (drule_tac x="\<lambda>i. (x i, f (x i))" in spec)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2689
      apply simp
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2690
      done
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2691
  qed
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2692
next
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2693
  assume "\<forall>k u x. ?rhs k u x"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2694
  then show ?lhs
79582
7822b55b26ce Correct the definition of a convex function, and updated the proofs
paulson <lp15@cam.ac.uk>
parents: 79532
diff changeset
  2695
  unfolding convex_epigraph_convex convex epigraph_def Ball_def mem_Collect_eq fst_sum snd_sum
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2696
  using assms[unfolded convex] apply clarsimp
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2697
  apply (rule_tac y="\<Sum>i = 1..k. u i * f (fst (x i))" in order_trans)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2698
  by (auto simp add: mult_left_mono intro: sum_mono)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2699
qed
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2700
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2701
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 70097
diff changeset
  2702
subsection\<^marker>\<open>tag unimportant\<close> \<open>A bound within a convex hull\<close>
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2703
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2704
lemma convex_on_convex_hull_bound:
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2705
  assumes "convex_on (convex hull S) f"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2706
    and "\<forall>x\<in>S. f x \<le> b"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2707
  shows "\<forall>x\<in> convex hull S. f x \<le> b"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2708
proof
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2709
  fix x
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2710
  assume "x \<in> convex hull S"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2711
  then obtain k u v where
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2712
    u: "\<forall>i\<in>{1..k::nat}. 0 \<le> u i \<and> v i \<in> S" "sum u {1..k} = 1" "(\<Sum>i = 1..k. u i *\<^sub>R v i) = x"
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2713
    unfolding convex_hull_indexed mem_Collect_eq by auto
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2714
  have "(\<Sum>i = 1..k. u i * f (v i)) \<le> b"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2715
    using sum_mono[of "{1..k}" "\<lambda>i. u i * f (v i)" "\<lambda>i. u i * b"]
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2716
    unfolding sum_distrib_right[symmetric] u(2) mult_1
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2717
    using assms(2) mult_left_mono u(1) by blast
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2718
  then show "f x \<le> b"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2719
    using assms(1)[unfolded convex_on[OF convex_convex_hull], rule_format, of k u v]
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2720
    using hull_inc u by fastforce
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2721
qed
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2722
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2723
lemma convex_set_plus:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2724
  assumes "convex S" and "convex T" shows "convex (S + T)"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2725
  by (metis assms convex_hull_eq convex_hull_set_plus)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2726
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2727
lemma convex_set_sum:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2728
  assumes "\<And>i. i \<in> A \<Longrightarrow> convex (B i)"
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2729
  shows "convex (\<Sum>i\<in>A. B i)"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2730
  using assms
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2731
  by (induction A rule: infinite_finite_induct) (auto simp: convex_set_plus)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2732
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2733
lemma finite_set_sum:
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2734
  assumes "\<forall>i\<in>A. finite (B i)" shows "finite (\<Sum>i\<in>A. B i)"
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2735
  using assms
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2736
  by (induction A rule: infinite_finite_induct) (auto simp: finite_set_plus)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2737
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2738
lemma box_eq_set_sum_Basis:
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2739
  "{x. \<forall>i\<in>Basis. x\<bullet>i \<in> B i} = (\<Sum>i\<in>Basis. (\<lambda>x. x *\<^sub>R i) ` (B i))" (is "?lhs = ?rhs")
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2740
proof -
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2741
  have "\<And>x. \<forall>i\<in>Basis. x \<bullet> i \<in> B i \<Longrightarrow>
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2742
         \<exists>s. x = sum s Basis \<and> (\<forall>i\<in>Basis. s i \<in> (\<lambda>x. x *\<^sub>R i) ` B i)"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2743
    by (metis (mono_tags, lifting) euclidean_representation image_iff)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2744
  moreover
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2745
  have "sum f Basis \<bullet> i \<in> B i" if "i \<in> Basis" and f: "\<forall>i\<in>Basis. f i \<in> (\<lambda>x. x *\<^sub>R i) ` B i" for i f
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2746
  proof -
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2747
    have "(\<Sum>x\<in>Basis - {i}. f x \<bullet> i) = 0"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2748
    proof (intro strip sum.neutral)
72385
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2749
      show "f x \<bullet> i = 0" if "x \<in> Basis - {i}" for x
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2750
        using that f \<open>i \<in> Basis\<close> inner_Basis that by fastforce
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2751
    qed
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2752
    then have "(\<Sum>x\<in>Basis. f x \<bullet> i) = f i \<bullet> i"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2753
      by (metis (no_types) \<open>i \<in> Basis\<close> add.right_neutral sum.remove [OF finite_Basis])
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2754
    then have "(\<Sum>x\<in>Basis. f x \<bullet> i) \<in> B i"
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2755
      using f that(1) by auto
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2756
    then show ?thesis
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2757
      by (simp add: inner_sum_left)
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2758
  qed
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2759
  ultimately show ?thesis
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2760
    by (subst set_sum_alt [OF finite_Basis]) auto
4a2c0eb482aa Simplified some proofs
paulson <lp15@cam.ac.uk>
parents: 71244
diff changeset
  2761
qed
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2762
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2763
lemma convex_hull_set_sum:
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2764
  "convex hull (\<Sum>i\<in>A. B i) = (\<Sum>i\<in>A. convex hull (B i))"
78475
a5f6d2fc1b1f More cosmetic changes
paulson <lp15@cam.ac.uk>
parents: 77490
diff changeset
  2765
  by (induction A rule: infinite_finite_induct) (auto simp: convex_hull_set_plus)
69619
3f7d8e05e0f2 split off Convex.thy: material that does not require Topology_Euclidean_Space
immler
parents:
diff changeset
  2766
79532
bb5d036f3523 Type class patch suggested by Achim Brucker, plus tidied lemma
paulson <lp15@cam.ac.uk>
parents: 78656
diff changeset
  2767
end