src/HOL/Analysis/Weierstrass_Theorems.thy
author wenzelm
Fri, 12 Apr 2019 22:09:25 +0200
changeset 70136 f03a01a18c6e
parent 69737 ec3cc98c38db
child 70138 bd42cc1e10d0
permissions -rw-r--r--
modernized tags: default scope excludes proof;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
69517
dc20f278e8f3 tuned style and headers
nipkow
parents: 69508
diff changeset
     1
section \<open>Bernstein-Weierstrass and Stone-Weierstrass\<close>
61711
21d7910d6816 Theory of homotopic paths (from HOL Light), plus comments and minor refinements
paulson <lp15@cam.ac.uk>
parents: 61610
diff changeset
     2
21d7910d6816 Theory of homotopic paths (from HOL Light), plus comments and minor refinements
paulson <lp15@cam.ac.uk>
parents: 61610
diff changeset
     3
text\<open>By L C Paulson (2015)\<close>
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
     4
63594
bd218a9320b5 HOL-Multivariate_Analysis: rename theories for more descriptive names
hoelzl
parents: 63040
diff changeset
     5
theory Weierstrass_Theorems
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
     6
imports Uniform_Limit Path_Connected Derivative
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
     7
begin
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
     8
69683
8b3458ca0762 subsection is always %important
immler
parents: 69597
diff changeset
     9
subsection \<open>Bernstein polynomials\<close>
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    10
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 69737
diff changeset
    11
definition\<^marker>\<open>tag important\<close> Bernstein :: "[nat,nat,real] \<Rightarrow> real" where
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    12
  "Bernstein n k x \<equiv> of_nat (n choose k) * x ^ k * (1 - x) ^ (n - k)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    13
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
    14
lemma Bernstein_nonneg: "\<lbrakk>0 \<le> x; x \<le> 1\<rbrakk> \<Longrightarrow> 0 \<le> Bernstein n k x"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    15
  by (simp add: Bernstein_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    16
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
    17
lemma Bernstein_pos: "\<lbrakk>0 < x; x < 1; k \<le> n\<rbrakk> \<Longrightarrow> 0 < Bernstein n k x"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    18
  by (simp add: Bernstein_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    19
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
    20
lemma sum_Bernstein [simp]: "(\<Sum>k\<le>n. Bernstein n k x) = 1"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    21
  using binomial_ring [of x "1-x" n]
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    22
  by (simp add: Bernstein_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    23
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
    24
lemma binomial_deriv1:
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    25
    "(\<Sum>k\<le>n. (of_nat k * of_nat (n choose k)) * a^(k-1) * b^(n-k)) = real_of_nat n * (a+b) ^ (n-1)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    26
  apply (rule DERIV_unique [where f = "\<lambda>a. (a+b)^n" and x=a])
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    27
  apply (subst binomial_ring)
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    28
  apply (rule derivative_eq_intros sum.cong | simp add: atMost_atLeast0)+
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    29
  done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    30
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
    31
lemma binomial_deriv2:
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    32
    "(\<Sum>k\<le>n. (of_nat k * of_nat (k-1) * of_nat (n choose k)) * a^(k-2) * b^(n-k)) =
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    33
     of_nat n * of_nat (n-1) * (a+b::real) ^ (n-2)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    34
  apply (rule DERIV_unique [where f = "\<lambda>a. of_nat n * (a+b::real) ^ (n-1)" and x=a])
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    35
  apply (subst binomial_deriv1 [symmetric])
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
    36
  apply (rule derivative_eq_intros sum.cong | simp add: Num.numeral_2_eq_2)+
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    37
  done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    38
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
    39
lemma sum_k_Bernstein [simp]: "(\<Sum>k\<le>n. real k * Bernstein n k x) = of_nat n * x"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    40
  apply (subst binomial_deriv1 [of n x "1-x", simplified, symmetric])
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
    41
  apply (simp add: sum_distrib_right)
68601
7828f3b85156 de-applying, etc.
paulson <lp15@cam.ac.uk>
parents: 68403
diff changeset
    42
  apply (auto simp: Bernstein_def algebra_simps power_eq_if intro!: sum.cong)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    43
  done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    44
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
    45
lemma sum_kk_Bernstein [simp]: "(\<Sum>k\<le>n. real k * (real k - 1) * Bernstein n k x) = real n * (real n - 1) * x\<^sup>2"
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
    46
proof -
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    47
  have "(\<Sum>k\<le>n. real k * (real k - 1) * Bernstein n k x) =
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    48
        (\<Sum>k\<le>n. real k * real (k - Suc 0) * real (n choose k) * x ^ (k - 2) * (1 - x) ^ (n - k) * x\<^sup>2)"
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    49
  proof (rule sum.cong [OF refl], simp)
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    50
    fix k
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    51
    assume "k \<le> n"
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    52
    then consider "k = 0" | "k = 1" | k' where "k = Suc (Suc k')"
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    53
      by (metis One_nat_def not0_implies_Suc)
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    54
    then show "k = 0 \<or>
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    55
          (real k - 1) * Bernstein n k x =
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    56
          real (k - Suc 0) *
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    57
          (real (n choose k) * (x ^ (k - 2) * ((1 - x) ^ (n - k) * x\<^sup>2)))"
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    58
      by cases (auto simp add: Bernstein_def power2_eq_square algebra_simps)
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    59
  qed
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    60
  also have "... = real_of_nat n * real_of_nat (n - Suc 0) * x\<^sup>2"
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    61
    by (subst binomial_deriv2 [of n x "1-x", simplified, symmetric]) (simp add: sum_distrib_right)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    62
  also have "... = n * (n - 1) * x\<^sup>2"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    63
    by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    64
  finally show ?thesis
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    65
    by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    66
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    67
69683
8b3458ca0762 subsection is always %important
immler
parents: 69597
diff changeset
    68
subsection \<open>Explicit Bernstein version of the 1D Weierstrass approximation theorem\<close>
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    69
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
    70
theorem Bernstein_Weierstrass:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    71
  fixes f :: "real \<Rightarrow> real"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    72
  assumes contf: "continuous_on {0..1} f" and e: "0 < e"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    73
    shows "\<exists>N. \<forall>n x. N \<le> n \<and> x \<in> {0..1}
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    74
                    \<longrightarrow> \<bar>f x - (\<Sum>k\<le>n. f(k/n) * Bernstein n k x)\<bar> < e"
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
    75
proof -
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    76
  have "bounded (f ` {0..1})"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    77
    using compact_continuous_image compact_imp_bounded contf by blast
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    78
  then obtain M where M: "\<And>x. 0 \<le> x \<Longrightarrow> x \<le> 1 \<Longrightarrow> \<bar>f x\<bar> \<le> M"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    79
    by (force simp add: bounded_iff)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    80
  then have Mge0: "0 \<le> M" by force
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    81
  have ucontf: "uniformly_continuous_on {0..1} f"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    82
    using compact_uniformly_continuous contf by blast
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    83
  then obtain d where d: "d>0" "\<And>x x'. \<lbrakk> x \<in> {0..1}; x' \<in> {0..1}; \<bar>x' - x\<bar> < d\<rbrakk> \<Longrightarrow> \<bar>f x' - f x\<bar> < e/2"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    84
     apply (rule uniformly_continuous_onE [where e = "e/2"])
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    85
     using e by (auto simp: dist_norm)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    86
  { fix n::nat and x::real
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    87
    assume n: "Suc (nat\<lceil>4*M/(e*d\<^sup>2)\<rceil>) \<le> n" and x: "0 \<le> x" "x \<le> 1"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    88
    have "0 < n" using n by simp
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    89
    have ed0: "- (e * d\<^sup>2) < 0"
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
    90
      using e \<open>0<d\<close> by simp
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    91
    also have "... \<le> M * 4"
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
    92
      using \<open>0\<le>M\<close> by simp
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61284
diff changeset
    93
    finally have [simp]: "real_of_int (nat \<lceil>4 * M / (e * d\<^sup>2)\<rceil>) = real_of_int \<lceil>4 * M / (e * d\<^sup>2)\<rceil>"
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
    94
      using \<open>0\<le>M\<close> e \<open>0<d\<close>
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    95
      by (simp add: field_simps)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    96
    have "4*M/(e*d\<^sup>2) + 1 \<le> real (Suc (nat\<lceil>4*M/(e*d\<^sup>2)\<rceil>))"
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    97
      by (simp add: real_nat_ceiling_ge)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    98
    also have "... \<le> real n"
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
    99
      using n by (simp add: field_simps)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   100
    finally have nbig: "4*M/(e*d\<^sup>2) + 1 \<le> real n" .
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
   101
    have sum_bern: "(\<Sum>k\<le>n. (x - k/n)\<^sup>2 * Bernstein n k x) = x * (1 - x) / n"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   102
    proof -
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   103
      have *: "\<And>a b x::real. (a - b)\<^sup>2 * x = a * (a - 1) * x + (1 - 2 * b) * a * x + b * b * x"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   104
        by (simp add: algebra_simps power2_eq_square)
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
   105
      have "(\<Sum>k\<le>n. (k - n * x)\<^sup>2 * Bernstein n k x) = n * x * (1 - x)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   106
        apply (simp add: * sum.distrib)
68403
223172b97d0b reorient -> split; documented split
nipkow
parents: 68224
diff changeset
   107
        apply (simp flip: sum_distrib_left add: mult.assoc)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   108
        apply (simp add: algebra_simps power2_eq_square)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   109
        done
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
   110
      then have "(\<Sum>k\<le>n. (k - n * x)\<^sup>2 * Bernstein n k x)/n^2 = x * (1 - x) / n"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   111
        by (simp add: power2_eq_square)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   112
      then show ?thesis
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   113
        using n by (simp add: sum_divide_distrib divide_simps mult.commute power2_commute)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   114
    qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   115
    { fix k
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   116
      assume k: "k \<le> n"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   117
      then have kn: "0 \<le> k / n" "k / n \<le> 1"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   118
        by (auto simp: divide_simps)
61945
1135b8de26c3 more symbols;
wenzelm
parents: 61906
diff changeset
   119
      consider (lessd) "\<bar>x - k / n\<bar> < d" | (ged) "d \<le> \<bar>x - k / n\<bar>"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   120
        by linarith
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   121
      then have "\<bar>(f x - f (k/n))\<bar> \<le> e/2 + 2 * M / d\<^sup>2 * (x - k/n)\<^sup>2"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   122
      proof cases
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   123
        case lessd
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   124
        then have "\<bar>(f x - f (k/n))\<bar> < e/2"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   125
          using d x kn by (simp add: abs_minus_commute)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   126
        also have "... \<le> (e/2 + 2 * M / d\<^sup>2 * (x - k/n)\<^sup>2)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   127
          using Mge0 d by simp
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   128
        finally show ?thesis by simp
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   129
      next
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   130
        case ged
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   131
        then have dle: "d\<^sup>2 \<le> (x - k/n)\<^sup>2"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   132
          by (metis d(1) less_eq_real_def power2_abs power_mono)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   133
        have "\<bar>(f x - f (k/n))\<bar> \<le> \<bar>f x\<bar> + \<bar>f (k/n)\<bar>"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   134
          by (rule abs_triangle_ineq4)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   135
        also have "... \<le> M+M"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   136
          by (meson M add_mono_thms_linordered_semiring(1) kn x)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   137
        also have "... \<le> 2 * M * ((x - k/n)\<^sup>2 / d\<^sup>2)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   138
          apply simp
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   139
          apply (rule Rings.ordered_semiring_class.mult_left_mono [of 1 "((x - k/n)\<^sup>2 / d\<^sup>2)", simplified])
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   140
          using dle \<open>d>0\<close> \<open>M\<ge>0\<close> by auto
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   141
        also have "... \<le> e/2 + 2 * M / d\<^sup>2 * (x - k/n)\<^sup>2"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   142
          using e  by simp
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   143
        finally show ?thesis .
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   144
        qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   145
    } note * = this
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
   146
    have "\<bar>f x - (\<Sum>k\<le>n. f(k / n) * Bernstein n k x)\<bar> \<le> \<bar>\<Sum>k\<le>n. (f x - f(k / n)) * Bernstein n k x\<bar>"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   147
      by (simp add: sum_subtractf sum_distrib_left [symmetric] algebra_simps)
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
   148
    also have "... \<le> (\<Sum>k\<le>n. (e/2 + (2 * M / d\<^sup>2) * (x - k / n)\<^sup>2) * Bernstein n k x)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   149
      apply (rule order_trans [OF sum_abs sum_mono])
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   150
      using *
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   151
      apply (simp add: abs_mult Bernstein_nonneg x mult_right_mono)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   152
      done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   153
    also have "... \<le> e/2 + (2 * M) / (d\<^sup>2 * n)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   154
      apply (simp only: sum.distrib Rings.semiring_class.distrib_right sum_distrib_left [symmetric] mult.assoc sum_bern)
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   155
      using \<open>d>0\<close> x
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   156
      apply (simp add: divide_simps Mge0 mult_le_one mult_left_le)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   157
      done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   158
    also have "... < e"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   159
      apply (simp add: field_simps)
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   160
      using \<open>d>0\<close> nbig e \<open>n>0\<close>
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   161
      apply (simp add: divide_simps algebra_simps)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   162
      using ed0 by linarith
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
   163
    finally have "\<bar>f x - (\<Sum>k\<le>n. f (real k / real n) * Bernstein n k x)\<bar> < e" .
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   164
  }
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   165
  then show ?thesis
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   166
    by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   167
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   168
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   169
69683
8b3458ca0762 subsection is always %important
immler
parents: 69597
diff changeset
   170
subsection \<open>General Stone-Weierstrass theorem\<close>
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   171
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   172
text\<open>Source:
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   173
Bruno Brosowski and Frank Deutsch.
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   174
An Elementary Proof of the Stone-Weierstrass Theorem.
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   175
Proceedings of the American Mathematical Society
61711
21d7910d6816 Theory of homotopic paths (from HOL Light), plus comments and minor refinements
paulson <lp15@cam.ac.uk>
parents: 61610
diff changeset
   176
Volume 81, Number 1, January 1981.
68224
1f7308050349 prefer HTTPS;
wenzelm
parents: 68077
diff changeset
   177
DOI: 10.2307/2043993  https://www.jstor.org/stable/2043993\<close>
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   178
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   179
locale function_ring_on =
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   180
  fixes R :: "('a::t2_space \<Rightarrow> real) set" and S :: "'a set"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   181
  assumes compact: "compact S"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   182
  assumes continuous: "f \<in> R \<Longrightarrow> continuous_on S f"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   183
  assumes add: "f \<in> R \<Longrightarrow> g \<in> R \<Longrightarrow> (\<lambda>x. f x + g x) \<in> R"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   184
  assumes mult: "f \<in> R \<Longrightarrow> g \<in> R \<Longrightarrow> (\<lambda>x. f x * g x) \<in> R"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   185
  assumes const: "(\<lambda>_. c) \<in> R"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   186
  assumes separable: "x \<in> S \<Longrightarrow> y \<in> S \<Longrightarrow> x \<noteq> y \<Longrightarrow> \<exists>f\<in>R. f x \<noteq> f y"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   187
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   188
begin
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   189
  lemma minus: "f \<in> R \<Longrightarrow> (\<lambda>x. - f x) \<in> R"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   190
    by (frule mult [OF const [of "-1"]]) simp
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   191
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   192
  lemma diff: "f \<in> R \<Longrightarrow> g \<in> R \<Longrightarrow> (\<lambda>x. f x - g x) \<in> R"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   193
    unfolding diff_conv_add_uminus by (metis add minus)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   194
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   195
  lemma power: "f \<in> R \<Longrightarrow> (\<lambda>x. f x ^ n) \<in> R"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   196
    by (induct n) (auto simp: const mult)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   197
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   198
  lemma sum: "\<lbrakk>finite I; \<And>i. i \<in> I \<Longrightarrow> f i \<in> R\<rbrakk> \<Longrightarrow> (\<lambda>x. \<Sum>i \<in> I. f i x) \<in> R"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   199
    by (induct I rule: finite_induct; simp add: const add)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   200
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   201
  lemma prod: "\<lbrakk>finite I; \<And>i. i \<in> I \<Longrightarrow> f i \<in> R\<rbrakk> \<Longrightarrow> (\<lambda>x. \<Prod>i \<in> I. f i x) \<in> R"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   202
    by (induct I rule: finite_induct; simp add: const mult)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   203
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 69737
diff changeset
   204
  definition\<^marker>\<open>tag important\<close> normf :: "('a::t2_space \<Rightarrow> real) \<Rightarrow> real"
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 68833
diff changeset
   205
    where "normf f \<equiv> SUP x\<in>S. \<bar>f x\<bar>"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   206
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   207
  lemma normf_upper: "\<lbrakk>continuous_on S f; x \<in> S\<rbrakk> \<Longrightarrow> \<bar>f x\<bar> \<le> normf f"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   208
    apply (simp add: normf_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   209
    apply (rule cSUP_upper, assumption)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   210
    by (simp add: bounded_imp_bdd_above compact compact_continuous_image compact_imp_bounded continuous_on_rabs)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   211
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   212
  lemma normf_least: "S \<noteq> {} \<Longrightarrow> (\<And>x. x \<in> S \<Longrightarrow> \<bar>f x\<bar> \<le> M) \<Longrightarrow> normf f \<le> M"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   213
    by (simp add: normf_def cSUP_least)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   214
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   215
end
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   216
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   217
lemma (in function_ring_on) one:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   218
  assumes U: "open U" and t0: "t0 \<in> S" "t0 \<in> U" and t1: "t1 \<in> S-U"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   219
    shows "\<exists>V. open V \<and> t0 \<in> V \<and> S \<inter> V \<subseteq> U \<and>
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   220
               (\<forall>e>0. \<exists>f \<in> R. f ` S \<subseteq> {0..1} \<and> (\<forall>t \<in> S \<inter> V. f t < e) \<and> (\<forall>t \<in> S - U. f t > 1 - e))"
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   221
proof -
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   222
  have "\<exists>pt \<in> R. pt t0 = 0 \<and> pt t > 0 \<and> pt ` S \<subseteq> {0..1}" if t: "t \<in> S - U" for t
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   223
  proof -
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   224
    have "t \<noteq> t0" using t t0 by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   225
    then obtain g where g: "g \<in> R" "g t \<noteq> g t0"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   226
      using separable t0  by (metis Diff_subset subset_eq t)
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62843
diff changeset
   227
    define h where [abs_def]: "h x = g x - g t0" for x
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   228
    have "h \<in> R"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   229
      unfolding h_def by (fast intro: g const diff)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   230
    then have hsq: "(\<lambda>w. (h w)\<^sup>2) \<in> R"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   231
      by (simp add: power2_eq_square mult)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   232
    have "h t \<noteq> h t0"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   233
      by (simp add: h_def g)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   234
    then have "h t \<noteq> 0"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   235
      by (simp add: h_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   236
    then have ht2: "0 < (h t)^2"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   237
      by simp
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   238
    also have "... \<le> normf (\<lambda>w. (h w)\<^sup>2)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   239
      using t normf_upper [where x=t] continuous [OF hsq] by force
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   240
    finally have nfp: "0 < normf (\<lambda>w. (h w)\<^sup>2)" .
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62843
diff changeset
   241
    define p where [abs_def]: "p x = (1 / normf (\<lambda>w. (h w)\<^sup>2)) * (h x)^2" for x
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   242
    have "p \<in> R"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   243
      unfolding p_def by (fast intro: hsq const mult)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   244
    moreover have "p t0 = 0"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   245
      by (simp add: p_def h_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   246
    moreover have "p t > 0"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   247
      using nfp ht2 by (simp add: p_def)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   248
    moreover have "\<And>x. x \<in> S \<Longrightarrow> p x \<in> {0..1}"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   249
      using nfp normf_upper [OF continuous [OF hsq] ] by (auto simp: p_def)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   250
    ultimately show "\<exists>pt \<in> R. pt t0 = 0 \<and> pt t > 0 \<and> pt ` S \<subseteq> {0..1}"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   251
      by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   252
  qed
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   253
  then obtain pf where pf: "\<And>t. t \<in> S-U \<Longrightarrow> pf t \<in> R \<and> pf t t0 = 0 \<and> pf t t > 0"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   254
                   and pf01: "\<And>t. t \<in> S-U \<Longrightarrow> pf t ` S \<subseteq> {0..1}"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   255
    by metis
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   256
  have com_sU: "compact (S-U)"
62843
313d3b697c9a Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents: 62623
diff changeset
   257
    using compact closed_Int_compact U by (simp add: Diff_eq compact_Int_closed open_closed)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   258
  have "\<And>t. t \<in> S-U \<Longrightarrow> \<exists>A. open A \<and> A \<inter> S = {x\<in>S. 0 < pf t x}"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   259
    apply (rule open_Collect_positive)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   260
    by (metis pf continuous)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   261
  then obtain Uf where Uf: "\<And>t. t \<in> S-U \<Longrightarrow> open (Uf t) \<and> (Uf t) \<inter> S = {x\<in>S. 0 < pf t x}"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   262
    by metis
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   263
  then have open_Uf: "\<And>t. t \<in> S-U \<Longrightarrow> open (Uf t)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   264
    by blast
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   265
  have tUft: "\<And>t. t \<in> S-U \<Longrightarrow> t \<in> Uf t"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   266
    using pf Uf by blast
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   267
  then have *: "S-U \<subseteq> (\<Union>x \<in> S-U. Uf x)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   268
    by blast
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   269
  obtain subU where subU: "subU \<subseteq> S - U" "finite subU" "S - U \<subseteq> (\<Union>x \<in> subU. Uf x)"
65585
a043de9ad41e Some fixes related to compactE_image
paulson <lp15@cam.ac.uk>
parents: 65583
diff changeset
   270
    by (blast intro: that compactE_image [OF com_sU open_Uf *])
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   271
  then have [simp]: "subU \<noteq> {}"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   272
    using t1 by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   273
  then have cardp: "card subU > 0" using subU
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   274
    by (simp add: card_gt_0_iff)
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62843
diff changeset
   275
  define p where [abs_def]: "p x = (1 / card subU) * (\<Sum>t \<in> subU. pf t x)" for x
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   276
  have pR: "p \<in> R"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   277
    unfolding p_def using subU pf by (fast intro: pf const mult sum)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   278
  have pt0 [simp]: "p t0 = 0"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   279
    using subU pf by (auto simp: p_def intro: sum.neutral)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   280
  have pt_pos: "p t > 0" if t: "t \<in> S-U" for t
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   281
  proof -
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   282
    obtain i where i: "i \<in> subU" "t \<in> Uf i" using subU t by blast
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   283
    show ?thesis
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   284
      using subU i t
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   285
      apply (clarsimp simp: p_def divide_simps)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   286
      apply (rule sum_pos2 [OF \<open>finite subU\<close>])
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   287
      using Uf t pf01 apply auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   288
      apply (force elim!: subsetCE)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   289
      done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   290
  qed
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   291
  have p01: "p x \<in> {0..1}" if t: "x \<in> S" for x
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   292
  proof -
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   293
    have "0 \<le> p x"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   294
      using subU cardp t
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   295
      apply (simp add: p_def divide_simps sum_nonneg)
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   296
      apply (rule sum_nonneg)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   297
      using pf01 by force
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   298
    moreover have "p x \<le> 1"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   299
      using subU cardp t
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   300
      apply (simp add: p_def divide_simps sum_nonneg)
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   301
      apply (rule sum_bounded_above [where 'a=real and K=1, simplified])
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   302
      using pf01 by force
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   303
    ultimately show ?thesis
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   304
      by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   305
  qed
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   306
  have "compact (p ` (S-U))"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   307
    by (meson Diff_subset com_sU compact_continuous_image continuous continuous_on_subset pR)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   308
  then have "open (- (p ` (S-U)))"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   309
    by (simp add: compact_imp_closed open_Compl)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   310
  moreover have "0 \<in> - (p ` (S-U))"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   311
    by (metis (no_types) ComplI image_iff not_less_iff_gr_or_eq pt_pos)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   312
  ultimately obtain delta0 where delta0: "delta0 > 0" "ball 0 delta0 \<subseteq> - (p ` (S-U))"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   313
    by (auto simp: elim!: openE)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   314
  then have pt_delta: "\<And>x. x \<in> S-U \<Longrightarrow> p x \<ge> delta0"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   315
    by (force simp: ball_def dist_norm dest: p01)
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62843
diff changeset
   316
  define \<delta> where "\<delta> = delta0/2"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   317
  have "delta0 \<le> 1" using delta0 p01 [of t1] t1
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   318
      by (force simp: ball_def dist_norm dest: p01)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   319
  with delta0 have \<delta>01: "0 < \<delta>" "\<delta> < 1"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   320
    by (auto simp: \<delta>_def)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   321
  have pt_\<delta>: "\<And>x. x \<in> S-U \<Longrightarrow> p x \<ge> \<delta>"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   322
    using pt_delta delta0 by (force simp: \<delta>_def)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   323
  have "\<exists>A. open A \<and> A \<inter> S = {x\<in>S. p x < \<delta>/2}"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   324
    by (rule open_Collect_less_Int [OF continuous [OF pR] continuous_on_const])
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   325
  then obtain V where V: "open V" "V \<inter> S = {x\<in>S. p x < \<delta>/2}"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   326
    by blast
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62843
diff changeset
   327
  define k where "k = nat\<lfloor>1/\<delta>\<rfloor> + 1"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   328
  have "k>0"  by (simp add: k_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   329
  have "k-1 \<le> 1/\<delta>"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   330
    using \<delta>01 by (simp add: k_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   331
  with \<delta>01 have "k \<le> (1+\<delta>)/\<delta>"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   332
    by (auto simp: algebra_simps add_divide_distrib)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   333
  also have "... < 2/\<delta>"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   334
    using \<delta>01 by (auto simp: divide_simps)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   335
  finally have k2\<delta>: "k < 2/\<delta>" .
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   336
  have "1/\<delta> < k"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   337
    using \<delta>01 unfolding k_def by linarith
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   338
  with \<delta>01 k2\<delta> have k\<delta>: "1 < k*\<delta>" "k*\<delta> < 2"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   339
    by (auto simp: divide_simps)
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62843
diff changeset
   340
  define q where [abs_def]: "q n t = (1 - p t ^ n) ^ (k^n)" for n t
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   341
  have qR: "q n \<in> R" for n
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   342
    by (simp add: q_def const diff power pR)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   343
  have q01: "\<And>n t. t \<in> S \<Longrightarrow> q n t \<in> {0..1}"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   344
    using p01 by (simp add: q_def power_le_one algebra_simps)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   345
  have qt0 [simp]: "\<And>n. n>0 \<Longrightarrow> q n t0 = 1"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   346
    using t0 pf by (simp add: q_def power_0_left)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   347
  { fix t and n::nat
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   348
    assume t: "t \<in> S \<inter> V"
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   349
    with \<open>k>0\<close> V have "k * p t < k * \<delta> / 2"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   350
       by force
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   351
    then have "1 - (k * \<delta> / 2)^n \<le> 1 - (k * p t)^n"
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   352
      using  \<open>k>0\<close> p01 t by (simp add: power_mono)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   353
    also have "... \<le> q n t"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   354
      using Bernoulli_inequality [of "- ((p t)^n)" "k^n"]
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   355
      apply (simp add: q_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   356
      by (metis IntE atLeastAtMost_iff p01 power_le_one power_mult_distrib t)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   357
    finally have "1 - (k * \<delta> / 2) ^ n \<le> q n t" .
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   358
  } note limitV = this
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   359
  { fix t and n::nat
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   360
    assume t: "t \<in> S - U"
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   361
    with \<open>k>0\<close> U have "k * \<delta> \<le> k * p t"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   362
      by (simp add: pt_\<delta>)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   363
    with k\<delta> have kpt: "1 < k * p t"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   364
      by (blast intro: less_le_trans)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   365
    have ptn_pos: "0 < p t ^ n"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   366
      using pt_pos [OF t] by simp
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   367
    have ptn_le: "p t ^ n \<le> 1"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   368
      by (meson DiffE atLeastAtMost_iff p01 power_le_one t)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   369
    have "q n t = (1/(k^n * (p t)^n)) * (1 - p t ^ n) ^ (k^n) * k^n * (p t)^n"
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   370
      using pt_pos [OF t] \<open>k>0\<close> by (simp add: q_def)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   371
    also have "... \<le> (1/(k * (p t))^n) * (1 - p t ^ n) ^ (k^n) * (1 + k^n * (p t)^n)"
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   372
      using pt_pos [OF t] \<open>k>0\<close>
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   373
      apply simp
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   374
      apply (simp only: times_divide_eq_right [symmetric])
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   375
      apply (rule mult_left_mono [of "1::real", simplified])
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   376
      apply (simp_all add: power_mult_distrib)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   377
      apply (rule zero_le_power)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   378
      using ptn_le by linarith
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   379
    also have "... \<le> (1/(k * (p t))^n) * (1 - p t ^ n) ^ (k^n) * (1 + (p t)^n) ^ (k^n)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   380
      apply (rule mult_left_mono [OF Bernoulli_inequality [of "p t ^ n" "k^n"]])
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   381
      using \<open>k>0\<close> ptn_pos ptn_le
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   382
      apply (auto simp: power_mult_distrib)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   383
      done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   384
    also have "... = (1/(k * (p t))^n) * (1 - p t ^ (2*n)) ^ (k^n)"
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   385
      using pt_pos [OF t] \<open>k>0\<close>
68403
223172b97d0b reorient -> split; documented split
nipkow
parents: 68224
diff changeset
   386
      by (simp add: algebra_simps power_mult power2_eq_square flip: power_mult_distrib)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   387
    also have "... \<le> (1/(k * (p t))^n) * 1"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   388
      apply (rule mult_left_mono [OF power_le_one])
61762
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61711
diff changeset
   389
      using pt_pos \<open>k>0\<close> p01 power_le_one t apply auto
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   390
      done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   391
    also have "... \<le> (1 / (k*\<delta>))^n"
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   392
      using \<open>k>0\<close> \<delta>01  power_mono pt_\<delta> t
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   393
      by (fastforce simp: field_simps)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   394
    finally have "q n t \<le> (1 / (real k * \<delta>)) ^ n " .
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   395
  } note limitNonU = this
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62843
diff changeset
   396
  define NN
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62843
diff changeset
   397
    where "NN e = 1 + nat \<lceil>max (ln e / ln (real k * \<delta> / 2)) (- ln e / ln (real k * \<delta>))\<rceil>" for e
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   398
  have NN: "of_nat (NN e) > ln e / ln (real k * \<delta> / 2)"  "of_nat (NN e) > - ln e / ln (real k * \<delta>)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   399
              if "0<e" for e
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   400
      unfolding NN_def  by linarith+
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   401
  have NN1: "\<And>e. e>0 \<Longrightarrow> (k * \<delta> / 2)^NN e < e"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   402
    apply (subst Transcendental.ln_less_cancel_iff [symmetric])
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   403
      prefer 3 apply (subst ln_realpow)
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   404
    using \<open>k>0\<close> \<open>\<delta>>0\<close> NN  k\<delta>
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   405
    apply (force simp add: field_simps)+
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   406
    done
65578
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65204
diff changeset
   407
  have NN0: "(1/(k*\<delta>)) ^ (NN e) < e" if "e>0" for e
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65204
diff changeset
   408
  proof -
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65204
diff changeset
   409
    have "0 < ln (real k) + ln \<delta>"
65585
a043de9ad41e Some fixes related to compactE_image
paulson <lp15@cam.ac.uk>
parents: 65583
diff changeset
   410
      using \<delta>01(1) \<open>0 < k\<close> k\<delta>(1) ln_gt_zero ln_mult by fastforce 
65578
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65204
diff changeset
   411
    then have "real (NN e) * ln (1 / (real k * \<delta>)) < ln e"
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65204
diff changeset
   412
      using k\<delta>(1) NN(2) [of e] that by (simp add: ln_div divide_simps)
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65204
diff changeset
   413
    then have "exp (real (NN e) * ln (1 / (real k * \<delta>))) < e"
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65204
diff changeset
   414
      by (metis exp_less_mono exp_ln that)
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65204
diff changeset
   415
    then show ?thesis
65583
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65578
diff changeset
   416
      by (simp add: \<delta>01(1) \<open>0 < k\<close> exp_of_nat_mult)
65578
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65204
diff changeset
   417
  qed
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   418
  { fix t and e::real
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   419
    assume "e>0"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   420
    have "t \<in> S \<inter> V \<Longrightarrow> 1 - q (NN e) t < e" "t \<in> S - U \<Longrightarrow> q (NN e) t < e"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   421
    proof -
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   422
      assume t: "t \<in> S \<inter> V"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   423
      show "1 - q (NN e) t < e"
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   424
        by (metis add.commute diff_le_eq not_le limitV [OF t] less_le_trans [OF NN1 [OF \<open>e>0\<close>]])
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   425
    next
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   426
      assume t: "t \<in> S - U"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   427
      show "q (NN e) t < e"
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   428
      using  limitNonU [OF t] less_le_trans [OF NN0 [OF \<open>e>0\<close>]] not_le by blast
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   429
    qed
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   430
  } then have "\<And>e. e > 0 \<Longrightarrow> \<exists>f\<in>R. f ` S \<subseteq> {0..1} \<and> (\<forall>t \<in> S \<inter> V. f t < e) \<and> (\<forall>t \<in> S - U. 1 - e < f t)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   431
    using q01
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   432
    by (rule_tac x="\<lambda>x. 1 - q (NN e) x" in bexI) (auto simp: algebra_simps intro: diff const qR)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   433
  moreover have t0V: "t0 \<in> V"  "S \<inter> V \<subseteq> U"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   434
    using pt_\<delta> t0 U V \<delta>01  by fastforce+
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   435
  ultimately show ?thesis using V t0V
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   436
    by blast
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   437
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   438
69597
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 69517
diff changeset
   439
text\<open>Non-trivial case, with \<^term>\<open>A\<close> and \<^term>\<open>B\<close> both non-empty\<close>
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   440
lemma (in function_ring_on) two_special:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   441
  assumes A: "closed A" "A \<subseteq> S" "a \<in> A"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   442
      and B: "closed B" "B \<subseteq> S" "b \<in> B"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   443
      and disj: "A \<inter> B = {}"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   444
      and e: "0 < e" "e < 1"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   445
    shows "\<exists>f \<in> R. f ` S \<subseteq> {0..1} \<and> (\<forall>x \<in> A. f x < e) \<and> (\<forall>x \<in> B. f x > 1 - e)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   446
proof -
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   447
  { fix w
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   448
    assume "w \<in> A"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   449
    then have "open ( - B)" "b \<in> S" "w \<notin> B" "w \<in> S"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   450
      using assms by auto
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   451
    then have "\<exists>V. open V \<and> w \<in> V \<and> S \<inter> V \<subseteq> -B \<and>
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   452
               (\<forall>e>0. \<exists>f \<in> R. f ` S \<subseteq> {0..1} \<and> (\<forall>x \<in> S \<inter> V. f x < e) \<and> (\<forall>x \<in> S \<inter> B. f x > 1 - e))"
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   453
      using one [of "-B" w b] assms \<open>w \<in> A\<close> by simp
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   454
  }
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   455
  then obtain Vf where Vf:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   456
         "\<And>w. w \<in> A \<Longrightarrow> open (Vf w) \<and> w \<in> Vf w \<and> S \<inter> Vf w \<subseteq> -B \<and>
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   457
                         (\<forall>e>0. \<exists>f \<in> R. f ` S \<subseteq> {0..1} \<and> (\<forall>x \<in> S \<inter> Vf w. f x < e) \<and> (\<forall>x \<in> S \<inter> B. f x > 1 - e))"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   458
    by metis
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   459
  then have open_Vf: "\<And>w. w \<in> A \<Longrightarrow> open (Vf w)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   460
    by blast
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   461
  have tVft: "\<And>w. w \<in> A \<Longrightarrow> w \<in> Vf w"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   462
    using Vf by blast
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   463
  then have sum_max_0: "A \<subseteq> (\<Union>x \<in> A. Vf x)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   464
    by blast
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   465
  have com_A: "compact A" using A
62843
313d3b697c9a Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents: 62623
diff changeset
   466
    by (metis compact compact_Int_closed inf.absorb_iff2)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   467
  obtain subA where subA: "subA \<subseteq> A" "finite subA" "A \<subseteq> (\<Union>x \<in> subA. Vf x)"
65585
a043de9ad41e Some fixes related to compactE_image
paulson <lp15@cam.ac.uk>
parents: 65583
diff changeset
   468
    by (blast intro: that compactE_image [OF com_A open_Vf sum_max_0])
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   469
  then have [simp]: "subA \<noteq> {}"
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   470
    using \<open>a \<in> A\<close> by auto
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   471
  then have cardp: "card subA > 0" using subA
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   472
    by (simp add: card_gt_0_iff)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   473
  have "\<And>w. w \<in> A \<Longrightarrow> \<exists>f \<in> R. f ` S \<subseteq> {0..1} \<and> (\<forall>x \<in> S \<inter> Vf w. f x < e / card subA) \<and> (\<forall>x \<in> S \<inter> B. f x > 1 - e / card subA)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   474
    using Vf e cardp by simp
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   475
  then obtain ff where ff:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   476
         "\<And>w. w \<in> A \<Longrightarrow> ff w \<in> R \<and> ff w ` S \<subseteq> {0..1} \<and>
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   477
                         (\<forall>x \<in> S \<inter> Vf w. ff w x < e / card subA) \<and> (\<forall>x \<in> S \<inter> B. ff w x > 1 - e / card subA)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   478
    by metis
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62843
diff changeset
   479
  define pff where [abs_def]: "pff x = (\<Prod>w \<in> subA. ff w x)" for x
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   480
  have pffR: "pff \<in> R"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
   481
    unfolding pff_def using subA ff by (auto simp: intro: prod)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   482
  moreover
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   483
  have pff01: "pff x \<in> {0..1}" if t: "x \<in> S" for x
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   484
  proof -
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   485
    have "0 \<le> pff x"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   486
      using subA cardp t
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   487
      apply (simp add: pff_def divide_simps sum_nonneg)
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
   488
      apply (rule Groups_Big.linordered_semidom_class.prod_nonneg)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   489
      using ff by fastforce
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   490
    moreover have "pff x \<le> 1"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   491
      using subA cardp t
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   492
      apply (simp add: pff_def divide_simps sum_nonneg)
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
   493
      apply (rule prod_mono [where g = "\<lambda>x. 1", simplified])
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   494
      using ff by fastforce
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   495
    ultimately show ?thesis
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   496
      by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   497
  qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   498
  moreover
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   499
  { fix v x
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   500
    assume v: "v \<in> subA" and x: "x \<in> Vf v" "x \<in> S"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   501
    from subA v have "pff x = ff v x * (\<Prod>w \<in> subA - {v}. ff w x)"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
   502
      unfolding pff_def  by (metis prod.remove)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   503
    also have "... \<le> ff v x * 1"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   504
      apply (rule Rings.ordered_semiring_class.mult_left_mono)
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
   505
      apply (rule prod_mono [where g = "\<lambda>x. 1", simplified])
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   506
      using ff [THEN conjunct2, THEN conjunct1] v subA x
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   507
      apply auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   508
      apply (meson atLeastAtMost_iff contra_subsetD imageI)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   509
      apply (meson atLeastAtMost_iff contra_subsetD image_eqI)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   510
      using atLeastAtMost_iff by blast
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   511
    also have "... < e / card subA"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   512
      using ff [THEN conjunct2, THEN conjunct2, THEN conjunct1] v subA x
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   513
      by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   514
    also have "... \<le> e"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   515
      using cardp e by (simp add: divide_simps)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   516
    finally have "pff x < e" .
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   517
  }
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   518
  then have "\<And>x. x \<in> A \<Longrightarrow> pff x < e"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   519
    using A Vf subA by (metis UN_E contra_subsetD)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   520
  moreover
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   521
  { fix x
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   522
    assume x: "x \<in> B"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   523
    then have "x \<in> S"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   524
      using B by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   525
    have "1 - e \<le> (1 - e / card subA) ^ card subA"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   526
      using Bernoulli_inequality [of "-e / card subA" "card subA"] e cardp
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   527
      by (auto simp: field_simps)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   528
    also have "... = (\<Prod>w \<in> subA. 1 - e / card subA)"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
   529
      by (simp add: prod_constant subA(2))
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   530
    also have "... < pff x"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   531
      apply (simp add: pff_def)
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
   532
      apply (rule prod_mono_strict [where f = "\<lambda>x. 1 - e / card subA", simplified])
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   533
      apply (simp_all add: subA(2))
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   534
      apply (intro ballI conjI)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   535
      using e apply (force simp: divide_simps)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   536
      using ff [THEN conjunct2, THEN conjunct2, THEN conjunct2] subA B x
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   537
      apply blast
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   538
      done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   539
    finally have "1 - e < pff x" .
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   540
  }
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   541
  ultimately
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   542
  show ?thesis by blast
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   543
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   544
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   545
lemma (in function_ring_on) two:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   546
  assumes A: "closed A" "A \<subseteq> S"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   547
      and B: "closed B" "B \<subseteq> S"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   548
      and disj: "A \<inter> B = {}"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   549
      and e: "0 < e" "e < 1"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   550
    shows "\<exists>f \<in> R. f ` S \<subseteq> {0..1} \<and> (\<forall>x \<in> A. f x < e) \<and> (\<forall>x \<in> B. f x > 1 - e)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   551
proof (cases "A \<noteq> {} \<and> B \<noteq> {}")
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   552
  case True then show ?thesis
68403
223172b97d0b reorient -> split; documented split
nipkow
parents: 68224
diff changeset
   553
    apply (simp flip: ex_in_conv)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   554
    using assms
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   555
    apply safe
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   556
    apply (force simp add: intro!: two_special)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   557
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   558
next
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   559
  case False with e show ?thesis
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   560
    apply simp
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   561
    apply (erule disjE)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   562
    apply (rule_tac [2] x="\<lambda>x. 0" in bexI)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   563
    apply (rule_tac x="\<lambda>x. 1" in bexI)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   564
    apply (auto simp: const)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   565
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   566
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   567
69597
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 69517
diff changeset
   568
text\<open>The special case where \<^term>\<open>f\<close> is non-negative and \<^term>\<open>e<1/3\<close>\<close>
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   569
lemma (in function_ring_on) Stone_Weierstrass_special:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   570
  assumes f: "continuous_on S f" and fpos: "\<And>x. x \<in> S \<Longrightarrow> f x \<ge> 0"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   571
      and e: "0 < e" "e < 1/3"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   572
  shows "\<exists>g \<in> R. \<forall>x\<in>S. \<bar>f x - g x\<bar> < 2*e"
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   573
proof -
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62843
diff changeset
   574
  define n where "n = 1 + nat \<lceil>normf f / e\<rceil>"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   575
  define A where "A j = {x \<in> S. f x \<le> (j - 1/3)*e}" for j :: nat
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   576
  define B where "B j = {x \<in> S. f x \<ge> (j + 1/3)*e}" for j :: nat
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   577
  have ngt: "(n-1) * e \<ge> normf f" "n\<ge>1"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   578
    using e
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61284
diff changeset
   579
    apply (simp_all add: n_def field_simps of_nat_Suc)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   580
    by (metis real_nat_ceiling_ge mult.commute not_less pos_less_divide_eq)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   581
  then have ge_fx: "(n-1) * e \<ge> f x" if "x \<in> S" for x
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   582
    using f normf_upper that by fastforce
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   583
  { fix j
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   584
    have A: "closed (A j)" "A j \<subseteq> S"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   585
      apply (simp_all add: A_def Collect_restrict)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   586
      apply (rule continuous_on_closed_Collect_le [OF f continuous_on_const])
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   587
      apply (simp add: compact compact_imp_closed)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   588
      done
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   589
    have B: "closed (B j)" "B j \<subseteq> S"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   590
      apply (simp_all add: B_def Collect_restrict)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   591
      apply (rule continuous_on_closed_Collect_le [OF continuous_on_const f])
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   592
      apply (simp add: compact compact_imp_closed)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   593
      done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   594
    have disj: "(A j) \<inter> (B j) = {}"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   595
      using e by (auto simp: A_def B_def field_simps)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   596
    have "\<exists>f \<in> R. f ` S \<subseteq> {0..1} \<and> (\<forall>x \<in> A j. f x < e/n) \<and> (\<forall>x \<in> B j. f x > 1 - e/n)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   597
      apply (rule two)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   598
      using e A B disj ngt
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   599
      apply simp_all
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   600
      done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   601
  }
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   602
  then obtain xf where xfR: "\<And>j. xf j \<in> R" and xf01: "\<And>j. xf j ` S \<subseteq> {0..1}"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   603
                   and xfA: "\<And>x j. x \<in> A j \<Longrightarrow> xf j x < e/n"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   604
                   and xfB: "\<And>x j. x \<in> B j \<Longrightarrow> xf j x > 1 - e/n"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   605
    by metis
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62843
diff changeset
   606
  define g where [abs_def]: "g x = e * (\<Sum>i\<le>n. xf i x)" for x
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   607
  have gR: "g \<in> R"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   608
    unfolding g_def by (fast intro: mult const sum xfR)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   609
  have gge0: "\<And>x. x \<in> S \<Longrightarrow> g x \<ge> 0"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   610
    using e xf01 by (simp add: g_def zero_le_mult_iff image_subset_iff sum_nonneg)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   611
  have A0: "A 0 = {}"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   612
    using fpos e by (fastforce simp: A_def)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   613
  have An: "A n = S"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61284
diff changeset
   614
    using e ngt f normf_upper by (fastforce simp: A_def field_simps of_nat_diff)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   615
  have Asub: "A j \<subseteq> A i" if "i\<ge>j" for i j
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   616
    using e that apply (clarsimp simp: A_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   617
    apply (erule order_trans, simp)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   618
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   619
  { fix t
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   620
    assume t: "t \<in> S"
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62843
diff changeset
   621
    define j where "j = (LEAST j. t \<in> A j)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   622
    have jn: "j \<le> n"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   623
      using t An by (simp add: Least_le j_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   624
    have Aj: "t \<in> A j"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   625
      using t An by (fastforce simp add: j_def intro: LeastI)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   626
    then have Ai: "t \<in> A i" if "i\<ge>j" for i
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   627
      using Asub [OF that] by blast
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   628
    then have fj1: "f t \<le> (j - 1/3)*e"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   629
      by (simp add: A_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   630
    then have Anj: "t \<notin> A i" if "i<j" for i
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   631
      using  Aj  \<open>i<j\<close>
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   632
      apply (simp add: j_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   633
      using not_less_Least by blast
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   634
    have j1: "1 \<le> j"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   635
      using A0 Aj j_def not_less_eq_eq by (fastforce simp add: j_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   636
    then have Anj: "t \<notin> A (j-1)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   637
      using Least_le by (fastforce simp add: j_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   638
    then have fj2: "(j - 4/3)*e < f t"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61284
diff changeset
   639
      using j1 t  by (simp add: A_def of_nat_diff)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   640
    have ***: "xf i t \<le> e/n" if "i\<ge>j" for i
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   641
      using xfA [OF Ai] that by (simp add: less_eq_real_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   642
    { fix i
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   643
      assume "i+2 \<le> j"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   644
      then obtain d where "i+2+d = j"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   645
        using le_Suc_ex that by blast
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   646
      then have "t \<in> B i"
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   647
        using Anj e ge_fx [OF t] \<open>1 \<le> n\<close> fpos [OF t] t
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   648
        apply (simp add: A_def B_def)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61284
diff changeset
   649
        apply (clarsimp simp add: field_simps of_nat_diff not_le of_nat_Suc)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   650
        apply (rule order_trans [of _ "e * 2 + (e * (real d * 3) + e * (real i * 3))"])
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   651
        apply auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   652
        done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   653
      then have "xf i t > 1 - e/n"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   654
        by (rule xfB)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   655
    } note **** = this
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   656
    have xf_le1: "\<And>i. xf i t \<le> 1"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   657
      using xf01 t by force
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   658
    have "g t = e * (\<Sum>i<j. xf i t) + e * (\<Sum>i=j..n. xf i t)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   659
      using j1 jn e
68403
223172b97d0b reorient -> split; documented split
nipkow
parents: 68224
diff changeset
   660
      apply (simp add: g_def flip: distrib_left)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   661
      apply (subst sum.union_disjoint [symmetric])
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   662
      apply (auto simp: ivl_disj_un)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   663
      done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   664
    also have "... \<le> e*j + e * ((Suc n - j)*e/n)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   665
      apply (rule add_mono)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61284
diff changeset
   666
      apply (simp_all only: mult_le_cancel_left_pos e)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   667
      apply (rule sum_bounded_above [OF xf_le1, where A = "lessThan j", simplified])
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   668
      using sum_bounded_above [of "{j..n}" "\<lambda>i. xf i t", OF ***]
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   669
      apply simp
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   670
      done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   671
    also have "... \<le> j*e + e*(n - j + 1)*e/n "
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61284
diff changeset
   672
      using \<open>1 \<le> n\<close> e  by (simp add: field_simps del: of_nat_Suc)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   673
    also have "... \<le> j*e + e*e"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61284
diff changeset
   674
      using \<open>1 \<le> n\<close> e j1 by (simp add: field_simps del: of_nat_Suc)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   675
    also have "... < (j + 1/3)*e"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   676
      using e by (auto simp: field_simps)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   677
    finally have gj1: "g t < (j + 1 / 3) * e" .
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   678
    have gj2: "(j - 4/3)*e < g t"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   679
    proof (cases "2 \<le> j")
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   680
      case False
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   681
      then have "j=1" using j1 by simp
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   682
      with t gge0 e show ?thesis by force
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   683
    next
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   684
      case True
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   685
      then have "(j - 4/3)*e < (j-1)*e - e^2"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61284
diff changeset
   686
        using e by (auto simp: of_nat_diff algebra_simps power2_eq_square)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   687
      also have "... < (j-1)*e - ((j - 1)/n) * e^2"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   688
        using e True jn by (simp add: power2_eq_square field_simps)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   689
      also have "... = e * (j-1) * (1 - e/n)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   690
        by (simp add: power2_eq_square field_simps)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   691
      also have "... \<le> e * (\<Sum>i\<le>j-2. xf i t)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   692
        using e
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   693
        apply simp
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   694
        apply (rule order_trans [OF _ sum_bounded_below [OF less_imp_le [OF ****]]])
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   695
        using True
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61284
diff changeset
   696
        apply (simp_all add: of_nat_Suc of_nat_diff)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   697
        done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   698
      also have "... \<le> g t"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   699
        using jn e
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   700
        using e xf01 t
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   701
        apply (simp add: g_def zero_le_mult_iff image_subset_iff sum_nonneg)
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   702
        apply (rule Groups_Big.sum_mono2, auto)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   703
        done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   704
      finally show ?thesis .
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   705
    qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   706
    have "\<bar>f t - g t\<bar> < 2 * e"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   707
      using fj1 fj2 gj1 gj2 by (simp add: abs_less_iff field_simps)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   708
  }
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   709
  then show ?thesis
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   710
    by (rule_tac x=g in bexI) (auto intro: gR)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   711
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   712
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   713
text\<open>The ``unpretentious'' formulation\<close>
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   714
proposition (in function_ring_on) Stone_Weierstrass_basic:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   715
  assumes f: "continuous_on S f" and e: "e > 0"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   716
  shows "\<exists>g \<in> R. \<forall>x\<in>S. \<bar>f x - g x\<bar> < e"
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   717
proof -
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   718
  have "\<exists>g \<in> R. \<forall>x\<in>S. \<bar>(f x + normf f) - g x\<bar> < 2 * min (e/2) (1/4)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   719
    apply (rule Stone_Weierstrass_special)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   720
    apply (rule Limits.continuous_on_add [OF f Topological_Spaces.continuous_on_const])
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   721
    using normf_upper [OF f] apply force
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   722
    apply (simp add: e, linarith)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   723
    done
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   724
  then obtain g where "g \<in> R" "\<forall>x\<in>S. \<bar>g x - (f x + normf f)\<bar> < e"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   725
    by force
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   726
  then show ?thesis
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   727
    apply (rule_tac x="\<lambda>x. g x - normf f" in bexI)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   728
    apply (auto simp: algebra_simps intro: diff const)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   729
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   730
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   731
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   732
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   733
theorem (in function_ring_on) Stone_Weierstrass:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   734
  assumes f: "continuous_on S f"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   735
  shows "\<exists>F\<in>UNIV \<rightarrow> R. LIM n sequentially. F n :> uniformly_on S f"
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   736
proof -
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   737
  { fix e::real
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   738
    assume e: "0 < e"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   739
    then obtain N::nat where N: "0 < N" "0 < inverse N" "inverse N < e"
62623
dbc62f86a1a9 rationalisation of theorem names esp about "real Archimedian" etc.
paulson <lp15@cam.ac.uk>
parents: 61945
diff changeset
   740
      by (auto simp: real_arch_inverse [of e])
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   741
    { fix n :: nat and x :: 'a and g :: "'a \<Rightarrow> real"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   742
      assume n: "N \<le> n"  "\<forall>x\<in>S. \<bar>f x - g x\<bar> < 1 / (1 + real n)"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   743
      assume x: "x \<in> S"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   744
      have "\<not> real (Suc n) < inverse e"
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   745
        using \<open>N \<le> n\<close> N using less_imp_inverse_less by force
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   746
      then have "1 / (1 + real n) \<le> e"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61284
diff changeset
   747
        using e by (simp add: field_simps of_nat_Suc)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   748
      then have "\<bar>f x - g x\<bar> < e"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   749
        using n(2) x by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   750
    } note * = this
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   751
    have "\<forall>\<^sub>F n in sequentially. \<forall>x\<in>S. \<bar>f x - (SOME g. g \<in> R \<and> (\<forall>x\<in>S. \<bar>f x - g x\<bar> < 1 / (1 + real n))) x\<bar> < e"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   752
      apply (rule eventually_sequentiallyI [of N])
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   753
      apply (auto intro: someI2_bex [OF Stone_Weierstrass_basic [OF f]] *)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   754
      done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   755
  } then
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   756
  show ?thesis
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   757
    apply (rule_tac x="\<lambda>n::nat. SOME g. g \<in> R \<and> (\<forall>x\<in>S. \<bar>f x - g x\<bar> < 1 / (1 + n))" in bexI)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   758
    prefer 2  apply (force intro: someI2_bex [OF Stone_Weierstrass_basic [OF f]])
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   759
    unfolding uniform_limit_iff
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   760
    apply (auto simp: dist_norm abs_minus_commute)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   761
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   762
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   763
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
   764
text\<open>A HOL Light formulation\<close>
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   765
corollary Stone_Weierstrass_HOL:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   766
  fixes R :: "('a::t2_space \<Rightarrow> real) set" and S :: "'a set"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   767
  assumes "compact S"  "\<And>c. P(\<lambda>x. c::real)"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   768
          "\<And>f. P f \<Longrightarrow> continuous_on S f"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   769
          "\<And>f g. P(f) \<and> P(g) \<Longrightarrow> P(\<lambda>x. f x + g x)"  "\<And>f g. P(f) \<and> P(g) \<Longrightarrow> P(\<lambda>x. f x * g x)"
69508
2a4c8a2a3f8e tuned headers; ~ -> \<not>
nipkow
parents: 69260
diff changeset
   770
          "\<And>x y. x \<in> S \<and> y \<in> S \<and> x \<noteq> y \<Longrightarrow> \<exists>f. P(f) \<and> f x \<noteq> f y"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   771
          "continuous_on S f"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   772
       "0 < e"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   773
    shows "\<exists>g. P(g) \<and> (\<forall>x \<in> S. \<bar>f x - g x\<bar> < e)"
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   774
proof -
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   775
  interpret PR: function_ring_on "Collect P"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   776
    apply unfold_locales
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   777
    using assms
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   778
    by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   779
  show ?thesis
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
   780
    using PR.Stone_Weierstrass_basic [OF \<open>continuous_on S f\<close> \<open>0 < e\<close>]
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   781
    by blast
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   782
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   783
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   784
69683
8b3458ca0762 subsection is always %important
immler
parents: 69597
diff changeset
   785
subsection \<open>Polynomial functions\<close>
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   786
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   787
inductive real_polynomial_function :: "('a::real_normed_vector \<Rightarrow> real) \<Rightarrow> bool" where
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   788
    linear: "bounded_linear f \<Longrightarrow> real_polynomial_function f"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   789
  | const: "real_polynomial_function (\<lambda>x. c)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   790
  | add:   "\<lbrakk>real_polynomial_function f; real_polynomial_function g\<rbrakk> \<Longrightarrow> real_polynomial_function (\<lambda>x. f x + g x)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   791
  | mult:  "\<lbrakk>real_polynomial_function f; real_polynomial_function g\<rbrakk> \<Longrightarrow> real_polynomial_function (\<lambda>x. f x * g x)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   792
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   793
declare real_polynomial_function.intros [intro]
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   794
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 69737
diff changeset
   795
definition\<^marker>\<open>tag important\<close> polynomial_function :: "('a::real_normed_vector \<Rightarrow> 'b::real_normed_vector) \<Rightarrow> bool"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   796
  where
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   797
   "polynomial_function p \<equiv> (\<forall>f. bounded_linear f \<longrightarrow> real_polynomial_function (f o p))"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   798
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   799
lemma real_polynomial_function_eq: "real_polynomial_function p = polynomial_function p"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   800
unfolding polynomial_function_def
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   801
proof
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   802
  assume "real_polynomial_function p"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   803
  then show " \<forall>f. bounded_linear f \<longrightarrow> real_polynomial_function (f \<circ> p)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   804
  proof (induction p rule: real_polynomial_function.induct)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   805
    case (linear h) then show ?case
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   806
      by (auto simp: bounded_linear_compose real_polynomial_function.linear)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   807
  next
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   808
    case (const h) then show ?case
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   809
      by (simp add: real_polynomial_function.const)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   810
  next
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   811
    case (add h) then show ?case
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   812
      by (force simp add: bounded_linear_def linear_add real_polynomial_function.add)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   813
  next
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   814
    case (mult h) then show ?case
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   815
      by (force simp add: real_bounded_linear const real_polynomial_function.mult)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   816
  qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   817
next
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   818
  assume [rule_format, OF bounded_linear_ident]: "\<forall>f. bounded_linear f \<longrightarrow> real_polynomial_function (f \<circ> p)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   819
  then show "real_polynomial_function p"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   820
    by (simp add: o_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   821
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   822
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   823
lemma polynomial_function_const [iff]: "polynomial_function (\<lambda>x. c)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   824
  by (simp add: polynomial_function_def o_def const)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   825
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   826
lemma polynomial_function_bounded_linear:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   827
  "bounded_linear f \<Longrightarrow> polynomial_function f"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   828
  by (simp add: polynomial_function_def o_def bounded_linear_compose real_polynomial_function.linear)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   829
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   830
lemma polynomial_function_id [iff]: "polynomial_function(\<lambda>x. x)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   831
  by (simp add: polynomial_function_bounded_linear)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   832
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   833
lemma polynomial_function_add [intro]:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   834
    "\<lbrakk>polynomial_function f; polynomial_function g\<rbrakk> \<Longrightarrow> polynomial_function (\<lambda>x. f x + g x)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   835
  by (auto simp: polynomial_function_def bounded_linear_def linear_add real_polynomial_function.add o_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   836
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   837
lemma polynomial_function_mult [intro]:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   838
  assumes f: "polynomial_function f" and g: "polynomial_function g"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   839
    shows "polynomial_function (\<lambda>x. f x *\<^sub>R g x)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   840
  using g
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   841
  apply (auto simp: polynomial_function_def bounded_linear_def Real_Vector_Spaces.linear.scaleR  const real_polynomial_function.mult o_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   842
  apply (rule mult)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   843
  using f
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   844
  apply (auto simp: real_polynomial_function_eq)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   845
  done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   846
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   847
lemma polynomial_function_cmul [intro]:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   848
  assumes f: "polynomial_function f"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   849
    shows "polynomial_function (\<lambda>x. c *\<^sub>R f x)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   850
  by (rule polynomial_function_mult [OF polynomial_function_const f])
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   851
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   852
lemma polynomial_function_minus [intro]:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   853
  assumes f: "polynomial_function f"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   854
    shows "polynomial_function (\<lambda>x. - f x)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   855
  using polynomial_function_cmul [OF f, of "-1"] by simp
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   856
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   857
lemma polynomial_function_diff [intro]:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   858
    "\<lbrakk>polynomial_function f; polynomial_function g\<rbrakk> \<Longrightarrow> polynomial_function (\<lambda>x. f x - g x)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   859
  unfolding add_uminus_conv_diff [symmetric]
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   860
  by (metis polynomial_function_add polynomial_function_minus)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   861
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   862
lemma polynomial_function_sum [intro]:
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   863
    "\<lbrakk>finite I; \<And>i. i \<in> I \<Longrightarrow> polynomial_function (\<lambda>x. f x i)\<rbrakk> \<Longrightarrow> polynomial_function (\<lambda>x. sum (f x) I)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   864
by (induct I rule: finite_induct) auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   865
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   866
lemma real_polynomial_function_minus [intro]:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   867
    "real_polynomial_function f \<Longrightarrow> real_polynomial_function (\<lambda>x. - f x)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   868
  using polynomial_function_minus [of f]
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   869
  by (simp add: real_polynomial_function_eq)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   870
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   871
lemma real_polynomial_function_diff [intro]:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   872
    "\<lbrakk>real_polynomial_function f; real_polynomial_function g\<rbrakk> \<Longrightarrow> real_polynomial_function (\<lambda>x. f x - g x)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   873
  using polynomial_function_diff [of f]
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   874
  by (simp add: real_polynomial_function_eq)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   875
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   876
lemma real_polynomial_function_sum [intro]:
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   877
    "\<lbrakk>finite I; \<And>i. i \<in> I \<Longrightarrow> real_polynomial_function (\<lambda>x. f x i)\<rbrakk> \<Longrightarrow> real_polynomial_function (\<lambda>x. sum (f x) I)"
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   878
  using polynomial_function_sum [of I f]
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   879
  by (simp add: real_polynomial_function_eq)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   880
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   881
lemma real_polynomial_function_power [intro]:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   882
    "real_polynomial_function f \<Longrightarrow> real_polynomial_function (\<lambda>x. f x ^ n)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   883
  by (induct n) (simp_all add: const mult)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   884
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   885
lemma real_polynomial_function_compose [intro]:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   886
  assumes f: "polynomial_function f" and g: "real_polynomial_function g"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   887
    shows "real_polynomial_function (g o f)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   888
  using g
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   889
  apply (induction g rule: real_polynomial_function.induct)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   890
  using f
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   891
  apply (simp_all add: polynomial_function_def o_def const add mult)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   892
  done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   893
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   894
lemma polynomial_function_compose [intro]:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   895
  assumes f: "polynomial_function f" and g: "polynomial_function g"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   896
    shows "polynomial_function (g o f)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   897
  using g real_polynomial_function_compose [OF f]
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   898
  by (auto simp: polynomial_function_def o_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   899
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   900
lemma sum_max_0:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   901
  fixes x::real (*in fact "'a::comm_ring_1"*)
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
   902
  shows "(\<Sum>i\<le>max m n. x^i * (if i \<le> m then a i else 0)) = (\<Sum>i\<le>m. x^i * a i)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   903
proof -
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
   904
  have "(\<Sum>i\<le>max m n. x^i * (if i \<le> m then a i else 0)) = (\<Sum>i\<le>max m n. (if i \<le> m then x^i * a i else 0))"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   905
    by (auto simp: algebra_simps intro: sum.cong)
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
   906
  also have "... = (\<Sum>i\<le>m. (if i \<le> m then x^i * a i else 0))"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   907
    by (rule sum.mono_neutral_right) auto
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
   908
  also have "... = (\<Sum>i\<le>m. x^i * a i)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   909
    by (auto simp: algebra_simps intro: sum.cong)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   910
  finally show ?thesis .
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   911
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   912
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   913
lemma real_polynomial_function_imp_sum:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   914
  assumes "real_polynomial_function f"
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
   915
    shows "\<exists>a n::nat. f = (\<lambda>x. \<Sum>i\<le>n. a i * x ^ i)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   916
using assms
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   917
proof (induct f)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   918
  case (linear f)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   919
  then show ?case
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   920
    apply (clarsimp simp add: real_bounded_linear)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   921
    apply (rule_tac x="\<lambda>i. if i=0 then 0 else c" in exI)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   922
    apply (rule_tac x=1 in exI)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   923
    apply (simp add: mult_ac)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   924
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   925
next
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   926
  case (const c)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   927
  show ?case
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   928
    apply (rule_tac x="\<lambda>i. c" in exI)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   929
    apply (rule_tac x=0 in exI)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61284
diff changeset
   930
    apply (auto simp: mult_ac of_nat_Suc)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   931
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   932
  case (add f1 f2)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   933
  then obtain a1 n1 a2 n2 where
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
   934
    "f1 = (\<lambda>x. \<Sum>i\<le>n1. a1 i * x ^ i)" "f2 = (\<lambda>x. \<Sum>i\<le>n2. a2 i * x ^ i)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   935
    by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   936
  then show ?case
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   937
    apply (rule_tac x="\<lambda>i. (if i \<le> n1 then a1 i else 0) + (if i \<le> n2 then a2 i else 0)" in exI)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   938
    apply (rule_tac x="max n1 n2" in exI)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   939
    using sum_max_0 [where m=n1 and n=n2] sum_max_0 [where m=n2 and n=n1]
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   940
    apply (simp add: sum.distrib algebra_simps max.commute)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   941
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   942
  case (mult f1 f2)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   943
  then obtain a1 n1 a2 n2 where
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
   944
    "f1 = (\<lambda>x. \<Sum>i\<le>n1. a1 i * x ^ i)" "f2 = (\<lambda>x. \<Sum>i\<le>n2. a2 i * x ^ i)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   945
    by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   946
  then obtain b1 b2 where
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
   947
    "f1 = (\<lambda>x. \<Sum>i\<le>n1. b1 i * x ^ i)" "f2 = (\<lambda>x. \<Sum>i\<le>n2. b2 i * x ^ i)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   948
    "b1 = (\<lambda>i. if i\<le>n1 then a1 i else 0)" "b2 = (\<lambda>i. if i\<le>n2 then a2 i else 0)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   949
    by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   950
  then show ?case
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   951
    apply (rule_tac x="\<lambda>i. \<Sum>k\<le>i. b1 k * b2 (i - k)" in exI)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   952
    apply (rule_tac x="n1+n2" in exI)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   953
    using polynomial_product [of n1 b1 n2 b2]
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   954
    apply (simp add: Set_Interval.atLeast0AtMost)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   955
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   956
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   957
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   958
lemma real_polynomial_function_iff_sum:
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 68072
diff changeset
   959
     "real_polynomial_function f \<longleftrightarrow> (\<exists>a n::nat. f = (\<lambda>x. \<Sum>i\<le>n. a i * x ^ i))"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   960
  apply (rule iffI)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   961
  apply (erule real_polynomial_function_imp_sum)
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   962
  apply (auto simp: linear mult const real_polynomial_function_power real_polynomial_function_sum)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   963
  done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   964
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   965
lemma polynomial_function_iff_Basis_inner:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   966
  fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::euclidean_space"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   967
  shows "polynomial_function f \<longleftrightarrow> (\<forall>b\<in>Basis. real_polynomial_function (\<lambda>x. inner (f x) b))"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   968
        (is "?lhs = ?rhs")
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   969
unfolding polynomial_function_def
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   970
proof (intro iffI allI impI)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   971
  assume "\<forall>h. bounded_linear h \<longrightarrow> real_polynomial_function (h \<circ> f)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   972
  then show ?rhs
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   973
    by (force simp add: bounded_linear_inner_left o_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   974
next
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   975
  fix h :: "'b \<Rightarrow> real"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   976
  assume rp: "\<forall>b\<in>Basis. real_polynomial_function (\<lambda>x. f x \<bullet> b)" and h: "bounded_linear h"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   977
  have "real_polynomial_function (h \<circ> (\<lambda>x. \<Sum>b\<in>Basis. (f x \<bullet> b) *\<^sub>R b))"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   978
    apply (rule real_polynomial_function_compose [OF _  linear [OF h]])
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   979
    using rp
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   980
    apply (auto simp: real_polynomial_function_eq polynomial_function_mult)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   981
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   982
  then show "real_polynomial_function (h \<circ> f)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   983
    by (simp add: euclidean_representation_sum_fun)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   984
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   985
69683
8b3458ca0762 subsection is always %important
immler
parents: 69597
diff changeset
   986
subsection \<open>Stone-Weierstrass theorem for polynomial functions\<close>
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   988
text\<open>First, we need to show that they are continous, differentiable and separable.\<close>
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   989
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   990
lemma continuous_real_polymonial_function:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   991
  assumes "real_polynomial_function f"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   992
    shows "continuous (at x) f"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   993
using assms
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   994
by (induct f) (auto simp: linear_continuous_at)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   995
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   996
lemma continuous_polymonial_function:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   997
  fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::euclidean_space"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   998
  assumes "polynomial_function f"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   999
    shows "continuous (at x) f"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1000
  apply (rule euclidean_isCont)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1001
  using assms apply (simp add: polynomial_function_iff_Basis_inner)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1002
  apply (force dest: continuous_real_polymonial_function intro: isCont_scaleR)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1003
  done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1004
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1005
lemma continuous_on_polymonial_function:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1006
  fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::euclidean_space"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1007
  assumes "polynomial_function f"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1008
    shows "continuous_on S f"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1009
  using continuous_polymonial_function [OF assms] continuous_at_imp_continuous_on
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1010
  by blast
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1011
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1012
lemma has_real_derivative_polynomial_function:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1013
  assumes "real_polynomial_function p"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1014
    shows "\<exists>p'. real_polynomial_function p' \<and>
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1015
                 (\<forall>x. (p has_real_derivative (p' x)) (at x))"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1016
using assms
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1017
proof (induct p)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1018
  case (linear p)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1019
  then show ?case
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1020
    by (force simp: real_bounded_linear const intro!: derivative_eq_intros)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1021
next
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1022
  case (const c)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1023
  show ?case
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1024
    by (rule_tac x="\<lambda>x. 0" in exI) auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1025
  case (add f1 f2)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1026
  then obtain p1 p2 where
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1027
    "real_polynomial_function p1" "\<And>x. (f1 has_real_derivative p1 x) (at x)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1028
    "real_polynomial_function p2" "\<And>x. (f2 has_real_derivative p2 x) (at x)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1029
    by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1030
  then show ?case
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1031
    apply (rule_tac x="\<lambda>x. p1 x + p2 x" in exI)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1032
    apply (auto intro!: derivative_eq_intros)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1033
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1034
  case (mult f1 f2)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1035
  then obtain p1 p2 where
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1036
    "real_polynomial_function p1" "\<And>x. (f1 has_real_derivative p1 x) (at x)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1037
    "real_polynomial_function p2" "\<And>x. (f2 has_real_derivative p2 x) (at x)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1038
    by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1039
  then show ?case
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1040
    using mult
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1041
    apply (rule_tac x="\<lambda>x. f1 x * p2 x + f2 x * p1 x" in exI)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1042
    apply (auto intro!: derivative_eq_intros)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1043
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1044
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1045
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1046
lemma has_vector_derivative_polynomial_function:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1047
  fixes p :: "real \<Rightarrow> 'a::euclidean_space"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1048
  assumes "polynomial_function p"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1049
  obtains p' where "polynomial_function p'" "\<And>x. (p has_vector_derivative (p' x)) (at x)"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1050
proof -
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1051
  { fix b :: 'a
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1052
    assume "b \<in> Basis"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1053
    then
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1054
    obtain p' where p': "real_polynomial_function p'" and pd: "\<And>x. ((\<lambda>x. p x \<bullet> b) has_real_derivative p' x) (at x)"
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
  1055
      using assms [unfolded polynomial_function_iff_Basis_inner, rule_format]  \<open>b \<in> Basis\<close>
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1056
      has_real_derivative_polynomial_function
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1057
      by blast
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1058
    have "\<exists>q. polynomial_function q \<and> (\<forall>x. ((\<lambda>u. (p u \<bullet> b) *\<^sub>R b) has_vector_derivative q x) (at x))"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1059
      apply (rule_tac x="\<lambda>x. p' x *\<^sub>R b" in exI)
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
  1060
      using \<open>b \<in> Basis\<close> p'
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1061
      apply (simp add: polynomial_function_iff_Basis_inner inner_Basis)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1062
      apply (auto intro: derivative_eq_intros pd)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1063
      done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1064
  }
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1065
  then obtain qf where qf:
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1066
      "\<And>b. b \<in> Basis \<Longrightarrow> polynomial_function (qf b)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1067
      "\<And>b x. b \<in> Basis \<Longrightarrow> ((\<lambda>u. (p u \<bullet> b) *\<^sub>R b) has_vector_derivative qf b x) (at x)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1068
    by metis
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1069
  show ?thesis
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1070
    apply (rule_tac p'="\<lambda>x. \<Sum>b\<in>Basis. qf b x" in that)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1071
     apply (force intro: qf)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
  1072
    apply (subst euclidean_representation_sum_fun [of p, symmetric])
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
  1073
     apply (auto intro: has_vector_derivative_sum qf)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1074
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1075
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1076
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1077
lemma real_polynomial_function_separable:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1078
  fixes x :: "'a::euclidean_space"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1079
  assumes "x \<noteq> y" shows "\<exists>f. real_polynomial_function f \<and> f x \<noteq> f y"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1080
proof -
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1081
  have "real_polynomial_function (\<lambda>u. \<Sum>b\<in>Basis. (inner (x-u) b)^2)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
  1082
    apply (rule real_polynomial_function_sum)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1083
    apply (auto simp: algebra_simps real_polynomial_function_power real_polynomial_function_diff
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1084
                 const linear bounded_linear_inner_left)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1085
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1086
  then show ?thesis
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1087
    apply (intro exI conjI, assumption)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1088
    using assms
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
  1089
    apply (force simp add: euclidean_eq_iff [of x y] sum_nonneg_eq_0_iff algebra_simps)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1090
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1091
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1092
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1093
lemma Stone_Weierstrass_real_polynomial_function:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1094
  fixes f :: "'a::euclidean_space \<Rightarrow> real"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1095
  assumes "compact S" "continuous_on S f" "0 < e"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1096
  obtains g where "real_polynomial_function g" "\<And>x. x \<in> S \<Longrightarrow> \<bar>f x - g x\<bar> < e"
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1097
proof -
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1098
  interpret PR: function_ring_on "Collect real_polynomial_function"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1099
    apply unfold_locales
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1100
    using assms continuous_on_polymonial_function real_polynomial_function_eq
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1101
    apply (auto intro: real_polynomial_function_separable)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1102
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1103
  show ?thesis
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1104
    using PR.Stone_Weierstrass_basic [OF \<open>continuous_on S f\<close> \<open>0 < e\<close>] that
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1105
    by blast
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1106
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1107
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1108
theorem Stone_Weierstrass_polynomial_function:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1109
  fixes f :: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1110
  assumes S: "compact S"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1111
      and f: "continuous_on S f"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1112
      and e: "0 < e"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1113
    shows "\<exists>g. polynomial_function g \<and> (\<forall>x \<in> S. norm(f x - g x) < e)"
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1114
proof -
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1115
  { fix b :: 'b
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1116
    assume "b \<in> Basis"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1117
    have "\<exists>p. real_polynomial_function p \<and> (\<forall>x \<in> S. \<bar>f x \<bullet> b - p x\<bar> < e / DIM('b))"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1118
      apply (rule exE [OF Stone_Weierstrass_real_polynomial_function [OF S _, of "\<lambda>x. f x \<bullet> b" "e / card Basis"]])
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1119
      using e f
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1120
      apply (auto simp: Euclidean_Space.DIM_positive intro: continuous_intros)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1121
      done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1122
  }
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1123
  then obtain pf where pf:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1124
      "\<And>b. b \<in> Basis \<Longrightarrow> real_polynomial_function (pf b) \<and> (\<forall>x \<in> S. \<bar>f x \<bullet> b - pf b x\<bar> < e / DIM('b))"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1125
      apply (rule bchoice [rule_format, THEN exE])
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1126
      apply assumption
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1127
      apply (force simp add: intro: that)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1128
      done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1129
  have "polynomial_function (\<lambda>x. \<Sum>b\<in>Basis. pf b x *\<^sub>R b)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1130
    using pf
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
  1131
    by (simp add: polynomial_function_sum polynomial_function_mult real_polynomial_function_eq)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1132
  moreover
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1133
  { fix x
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1134
    assume "x \<in> S"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1135
    have "norm (\<Sum>b\<in>Basis. (f x \<bullet> b) *\<^sub>R b - pf b x *\<^sub>R b) \<le> (\<Sum>b\<in>Basis. norm ((f x \<bullet> b) *\<^sub>R b - pf b x *\<^sub>R b))"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
  1136
      by (rule norm_sum)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1137
    also have "... < of_nat DIM('b) * (e / DIM('b))"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
  1138
      apply (rule sum_bounded_above_strict)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1139
      apply (simp add: Real_Vector_Spaces.scaleR_diff_left [symmetric] pf \<open>x \<in> S\<close>)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1140
      apply (rule DIM_positive)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1141
      done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1142
    also have "... = e"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1143
      using DIM_positive by (simp add: field_simps)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1144
    finally have "norm (\<Sum>b\<in>Basis. (f x \<bullet> b) *\<^sub>R b - pf b x *\<^sub>R b) < e" .
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1145
  }
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1146
  ultimately
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1147
  show ?thesis
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
  1148
    apply (subst euclidean_representation_sum_fun [of f, symmetric])
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1149
    apply (rule_tac x="\<lambda>x. \<Sum>b\<in>Basis. pf b x *\<^sub>R b" in exI)
68403
223172b97d0b reorient -> split; documented split
nipkow
parents: 68224
diff changeset
  1150
    apply (auto simp flip: sum_subtractf)
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1151
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1152
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1153
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1154
proposition Stone_Weierstrass_uniform_limit:
65204
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1155
  fixes f :: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space"
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1156
  assumes S: "compact S"
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1157
    and f: "continuous_on S f"
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1158
  obtains g where "uniform_limit S g f sequentially" "\<And>n. polynomial_function (g n)"
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1159
proof -
65204
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1160
  have pos: "inverse (Suc n) > 0" for n by auto
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1161
  obtain g where g: "\<And>n. polynomial_function (g n)" "\<And>x n. x \<in> S \<Longrightarrow> norm(f x - g n x) < inverse (Suc n)"
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1162
    using Stone_Weierstrass_polynomial_function[OF S f pos]
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1163
    by metis
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1164
  have "uniform_limit S g f sequentially"
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1165
  proof (rule uniform_limitI)
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1166
    fix e::real assume "0 < e"
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1167
    with LIMSEQ_inverse_real_of_nat have "\<forall>\<^sub>F n in sequentially. inverse (Suc n) < e"
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1168
      by (rule order_tendstoD)
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1169
    moreover have "\<forall>\<^sub>F n in sequentially. \<forall>x\<in>S. dist (g n x) (f x) < inverse (Suc n)"
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1170
      using g by (simp add: dist_norm norm_minus_commute)
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1171
    ultimately show "\<forall>\<^sub>F n in sequentially. \<forall>x\<in>S. dist (g n x) (f x) < e"
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1172
      by (eventually_elim) auto
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1173
  qed
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1174
  then show ?thesis using g(1) ..
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1175
qed
d23eded35a33 modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
immler
parents: 64272
diff changeset
  1176
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1177
69683
8b3458ca0762 subsection is always %important
immler
parents: 69597
diff changeset
  1178
subsection\<open>Polynomial functions as paths\<close>
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1179
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
  1180
text\<open>One application is to pick a smooth approximation to a path,
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
  1181
or just pick a smooth path anyway in an open connected set\<close>
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1182
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1183
lemma path_polynomial_function:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1184
    fixes g  :: "real \<Rightarrow> 'b::euclidean_space"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1185
    shows "polynomial_function g \<Longrightarrow> path g"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1186
  by (simp add: path_def continuous_on_polymonial_function)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1187
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1188
lemma path_approx_polynomial_function:
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1189
    fixes g :: "real \<Rightarrow> 'b::euclidean_space"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1190
    assumes "path g" "0 < e"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1191
    shows "\<exists>p. polynomial_function p \<and>
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1192
                pathstart p = pathstart g \<and>
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1193
                pathfinish p = pathfinish g \<and>
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1194
                (\<forall>t \<in> {0..1}. norm(p t - g t) < e)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1195
proof -
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1196
  obtain q where poq: "polynomial_function q" and noq: "\<And>x. x \<in> {0..1} \<Longrightarrow> norm (g x - q x) < e/4"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1197
    using Stone_Weierstrass_polynomial_function [of "{0..1}" g "e/4"] assms
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1198
    by (auto simp: path_def)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1199
  have pf: "polynomial_function (\<lambda>t. q t + (g 0 - q 0) + t *\<^sub>R (g 1 - q 1 - (g 0 - q 0)))"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1200
    by (force simp add: poq)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1201
  have *: "\<And>t. t \<in> {0..1} \<Longrightarrow> norm (((q t - g t) + (g 0 - q 0)) + (t *\<^sub>R (g 1 - q 1) + t *\<^sub>R (q 0 - g 0))) < (e/4 + e/4) + (e/4+e/4)"
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1202
    apply (intro Real_Vector_Spaces.norm_add_less)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1203
    using noq
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1204
    apply (auto simp: norm_minus_commute intro: le_less_trans [OF mult_left_le_one_le noq] simp del: less_divide_eq_numeral1)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1205
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1206
  show ?thesis
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1207
    apply (intro exI conjI)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1208
    apply (rule pf)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1209
    using *
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1210
    apply (auto simp add: pathstart_def pathfinish_def algebra_simps)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1211
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1212
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1213
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1214
proposition connected_open_polynomial_connected:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1215
  fixes S :: "'a::euclidean_space set"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1216
  assumes S: "open S" "connected S"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1217
      and "x \<in> S" "y \<in> S"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1218
    shows "\<exists>g. polynomial_function g \<and> path_image g \<subseteq> S \<and>
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1219
               pathstart g = x \<and> pathfinish g = y"
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1220
proof -
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1221
  have "path_connected S" using assms
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1222
    by (simp add: connected_open_path_connected)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1223
  with \<open>x \<in> S\<close> \<open>y \<in> S\<close> obtain p where p: "path p" "path_image p \<subseteq> S" "pathstart p = x" "pathfinish p = y"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1224
    by (force simp: path_connected_def)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1225
  have "\<exists>e. 0 < e \<and> (\<forall>x \<in> path_image p. ball x e \<subseteq> S)"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1226
  proof (cases "S = UNIV")
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1227
    case True then show ?thesis
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1228
      by (simp add: gt_ex)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1229
  next
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1230
    case False
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1231
    then have "- S \<noteq> {}" by blast
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1232
    then show ?thesis
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1233
      apply (rule_tac x="setdist (path_image p) (-S)" in exI)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1234
      using S p
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1235
      apply (simp add: setdist_gt_0_compact_closed compact_path_image open_closed)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1236
      using setdist_le_dist [of _ "path_image p" _ "-S"]
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1237
      by fastforce
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1238
  qed
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1239
  then obtain e where "0 < e"and eb: "\<And>x. x \<in> path_image p \<Longrightarrow> ball x e \<subseteq> S"
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1240
    by auto
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1241
  show ?thesis
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 60987
diff changeset
  1242
    using path_approx_polynomial_function [OF \<open>path p\<close> \<open>0 < e\<close>]
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1243
    apply clarify
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1244
    apply (intro exI conjI, assumption)
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1245
    using p
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1246
    apply (fastforce simp add: dist_norm path_image_def norm_minus_commute intro: eb [THEN subsetD])+
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1247
    done
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1248
qed
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1249
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1250
lemma has_derivative_componentwise_within:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1251
   "(f has_derivative f') (at a within S) \<longleftrightarrow>
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1252
    (\<forall>i \<in> Basis. ((\<lambda>x. f x \<bullet> i) has_derivative (\<lambda>x. f' x \<bullet> i)) (at a within S))"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1253
  apply (simp add: has_derivative_within)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1254
  apply (subst tendsto_componentwise_iff)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1255
  apply (simp add: bounded_linear_componentwise_iff [symmetric] ball_conj_distrib)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1256
  apply (simp add: algebra_simps)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1257
  done
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1258
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1259
lemma differentiable_componentwise_within:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1260
   "f differentiable (at a within S) \<longleftrightarrow>
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1261
    (\<forall>i \<in> Basis. (\<lambda>x. f x \<bullet> i) differentiable at a within S)"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1262
proof -
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1263
  { assume "\<forall>i\<in>Basis. \<exists>D. ((\<lambda>x. f x \<bullet> i) has_derivative D) (at a within S)"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1264
    then obtain f' where f':
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1265
           "\<And>i. i \<in> Basis \<Longrightarrow> ((\<lambda>x. f x \<bullet> i) has_derivative f' i) (at a within S)"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1266
      by metis
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1267
    have eq: "(\<lambda>x. (\<Sum>j\<in>Basis. f' j x *\<^sub>R j) \<bullet> i) = f' i" if "i \<in> Basis" for i
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1268
      using that by (simp add: inner_add_left inner_add_right)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1269
    have "\<exists>D. \<forall>i\<in>Basis. ((\<lambda>x. f x \<bullet> i) has_derivative (\<lambda>x. D x \<bullet> i)) (at a within S)"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1270
      apply (rule_tac x="\<lambda>x::'a. (\<Sum>j\<in>Basis. f' j x *\<^sub>R j) :: 'b" in exI)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1271
      apply (simp add: eq f')
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1272
      done
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1273
  }
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1274
  then show ?thesis
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1275
    apply (simp add: differentiable_def)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1276
    using has_derivative_componentwise_within
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1277
    by blast
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1278
qed
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1279
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1280
lemma polynomial_function_inner [intro]:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1281
  fixes i :: "'a::euclidean_space"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1282
  shows "polynomial_function g \<Longrightarrow> polynomial_function (\<lambda>x. g x \<bullet> i)"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1283
  apply (subst euclidean_representation [where x=i, symmetric])
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
  1284
  apply (force simp: inner_sum_right polynomial_function_iff_Basis_inner polynomial_function_sum)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1285
  done
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1286
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1287
text\<open> Differentiability of real and vector polynomial functions.\<close>
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1288
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1289
lemma differentiable_at_real_polynomial_function:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1290
   "real_polynomial_function f \<Longrightarrow> f differentiable (at a within S)"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1291
  by (induction f rule: real_polynomial_function.induct)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1292
     (simp_all add: bounded_linear_imp_differentiable)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1293
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1294
lemma differentiable_on_real_polynomial_function:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1295
   "real_polynomial_function p \<Longrightarrow> p differentiable_on S"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1296
by (simp add: differentiable_at_imp_differentiable_on differentiable_at_real_polynomial_function)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1297
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1298
lemma differentiable_at_polynomial_function:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1299
  fixes f :: "_ \<Rightarrow> 'a::euclidean_space"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1300
  shows "polynomial_function f \<Longrightarrow> f differentiable (at a within S)"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1301
  by (metis differentiable_at_real_polynomial_function polynomial_function_iff_Basis_inner differentiable_componentwise_within)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1302
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1303
lemma differentiable_on_polynomial_function:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1304
  fixes f :: "_ \<Rightarrow> 'a::euclidean_space"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1305
  shows "polynomial_function f \<Longrightarrow> f differentiable_on S"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1306
by (simp add: differentiable_at_polynomial_function differentiable_on_def)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1307
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1308
lemma vector_eq_dot_span:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1309
  assumes "x \<in> span B" "y \<in> span B" and i: "\<And>i. i \<in> B \<Longrightarrow> i \<bullet> x = i \<bullet> y"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1310
  shows "x = y"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1311
proof -
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1312
  have "\<And>i. i \<in> B \<Longrightarrow> orthogonal (x - y) i"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1313
    by (simp add: i inner_commute inner_diff_right orthogonal_def)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1314
  moreover have "x - y \<in> span B"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1315
    by (simp add: assms span_diff)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1316
  ultimately have "x - y = 0"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1317
    using orthogonal_to_span orthogonal_self by blast
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1318
    then show ?thesis by simp
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1319
qed
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1320
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1321
lemma orthonormal_basis_expand:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1322
  assumes B: "pairwise orthogonal B"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1323
      and 1: "\<And>i. i \<in> B \<Longrightarrow> norm i = 1"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1324
      and "x \<in> span B"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1325
      and "finite B"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1326
    shows "(\<Sum>i\<in>B. (x \<bullet> i) *\<^sub>R i) = x"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1327
proof (rule vector_eq_dot_span [OF _ \<open>x \<in> span B\<close>])
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1328
  show "(\<Sum>i\<in>B. (x \<bullet> i) *\<^sub>R i) \<in> span B"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
  1329
    by (simp add: span_clauses span_sum)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1330
  show "i \<bullet> (\<Sum>i\<in>B. (x \<bullet> i) *\<^sub>R i) = i \<bullet> x" if "i \<in> B" for i
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1331
  proof -
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1332
    have [simp]: "i \<bullet> j = (if j = i then 1 else 0)" if "j \<in> B" for j
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1333
      using B 1 that \<open>i \<in> B\<close>
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1334
      by (force simp: norm_eq_1 orthogonal_def pairwise_def)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1335
    have "i \<bullet> (\<Sum>i\<in>B. (x \<bullet> i) *\<^sub>R i) = (\<Sum>j\<in>B. x \<bullet> j * (i \<bullet> j))"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
  1336
      by (simp add: inner_sum_right)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1337
    also have "... = (\<Sum>j\<in>B. if j = i then x \<bullet> i else 0)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
  1338
      by (rule sum.cong; simp)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1339
    also have "... = i \<bullet> x"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
  1340
      by (simp add: \<open>finite B\<close> that inner_commute sum.delta)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1341
    finally show ?thesis .
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1342
  qed
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1343
qed
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1344
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1345
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1346
theorem Stone_Weierstrass_polynomial_function_subspace:
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1347
  fixes f :: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1348
  assumes "compact S"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1349
      and contf: "continuous_on S f"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1350
      and "0 < e"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1351
      and "subspace T" "f ` S \<subseteq> T"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1352
    obtains g where "polynomial_function g" "g ` S \<subseteq> T"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1353
                    "\<And>x. x \<in> S \<Longrightarrow> norm(f x - g x) < e"
69737
ec3cc98c38db tagged 4 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1354
proof -
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1355
  obtain B where "B \<subseteq> T" and orthB: "pairwise orthogonal B"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1356
             and B1: "\<And>x. x \<in> B \<Longrightarrow> norm x = 1"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1357
             and "independent B" and cardB: "card B = dim T"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1358
             and spanB: "span B = T"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1359
    using orthonormal_basis_subspace \<open>subspace T\<close> by metis
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1360
  then have "finite B"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1361
    by (simp add: independent_imp_finite)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1362
  then obtain n::nat and b where "B = b ` {i. i < n}" "inj_on b {i. i < n}"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1363
    using finite_imp_nat_seg_image_inj_on by metis
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1364
  with cardB have "n = card B" "dim T = n"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1365
    by (auto simp: card_image)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1366
  have fx: "(\<Sum>i\<in>B. (f x \<bullet> i) *\<^sub>R i) = f x" if "x \<in> S" for x
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1367
    apply (rule orthonormal_basis_expand [OF orthB B1 _ \<open>finite B\<close>])
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1368
    using \<open>f ` S \<subseteq> T\<close> spanB that by auto
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1369
  have cont: "continuous_on S (\<lambda>x. \<Sum>i\<in>B. (f x \<bullet> i) *\<^sub>R i)"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1370
    by (intro continuous_intros contf)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1371
  obtain g where "polynomial_function g"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1372
             and g: "\<And>x. x \<in> S \<Longrightarrow> norm ((\<Sum>i\<in>B. (f x \<bullet> i) *\<^sub>R i) - g x) < e / (n+2)"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1373
    using Stone_Weierstrass_polynomial_function [OF \<open>compact S\<close> cont, of "e / real (n + 2)"] \<open>0 < e\<close>
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1374
    by auto
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1375
  with fx have g: "\<And>x. x \<in> S \<Longrightarrow> norm (f x - g x) < e / (n+2)"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1376
    by auto
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1377
  show ?thesis
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1378
  proof
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1379
    show "polynomial_function (\<lambda>x. \<Sum>i\<in>B. (g x \<bullet> i) *\<^sub>R i)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
  1380
      apply (rule polynomial_function_sum)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1381
       apply (simp add: \<open>finite B\<close>)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1382
      using \<open>polynomial_function g\<close>  by auto
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1383
    show "(\<lambda>x. \<Sum>i\<in>B. (g x \<bullet> i) *\<^sub>R i) ` S \<subseteq> T"
67986
b65c4a6a015e quite a few more results about negligibility, etc., and a bit of tidying up
paulson <lp15@cam.ac.uk>
parents: 65585
diff changeset
  1384
      using \<open>B \<subseteq> T\<close>
68072
493b818e8e10 added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
immler
parents: 67986
diff changeset
  1385
      by (blast intro: subspace_sum subspace_mul \<open>subspace T\<close>)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1386
    show "norm (f x - (\<Sum>i\<in>B. (g x \<bullet> i) *\<^sub>R i)) < e" if "x \<in> S" for x
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1387
    proof -
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1388
      have orth': "pairwise (\<lambda>i j. orthogonal ((f x \<bullet> i) *\<^sub>R i - (g x \<bullet> i) *\<^sub>R i)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1389
                                              ((f x \<bullet> j) *\<^sub>R j - (g x \<bullet> j) *\<^sub>R j)) B"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1390
        apply (rule pairwise_mono [OF orthB])
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1391
        apply (auto simp: orthogonal_def inner_diff_right inner_diff_left)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1392
        done
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1393
      then have "(norm (\<Sum>i\<in>B. (f x \<bullet> i) *\<^sub>R i - (g x \<bullet> i) *\<^sub>R i))\<^sup>2 =
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1394
                 (\<Sum>i\<in>B. (norm ((f x \<bullet> i) *\<^sub>R i - (g x \<bullet> i) *\<^sub>R i))\<^sup>2)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
  1395
        by (simp add:  norm_sum_Pythagorean [OF \<open>finite B\<close> orth'])
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1396
      also have "... = (\<Sum>i\<in>B. (norm (((f x - g x) \<bullet> i) *\<^sub>R i))\<^sup>2)"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1397
        by (simp add: algebra_simps)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1398
      also have "... \<le> (\<Sum>i\<in>B. (norm (f x - g x))\<^sup>2)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
  1399
        apply (rule sum_mono)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1400
        apply (simp add: B1)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1401
        apply (rule order_trans [OF Cauchy_Schwarz_ineq])
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1402
        by (simp add: B1 dot_square_norm)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1403
      also have "... = n * norm (f x - g x)^2"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1404
        by (simp add: \<open>n = card B\<close>)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1405
      also have "... \<le> n * (e / (n+2))^2"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1406
        apply (rule mult_left_mono)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1407
         apply (meson dual_order.order_iff_strict g norm_ge_zero power_mono that, simp)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1408
        done
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1409
      also have "... \<le> e^2 / (n+2)"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1410
        using \<open>0 < e\<close> by (simp add: divide_simps power2_eq_square)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1411
      also have "... < e^2"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1412
        using \<open>0 < e\<close> by (simp add: divide_simps)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1413
      finally have "(norm (\<Sum>i\<in>B. (f x \<bullet> i) *\<^sub>R i - (g x \<bullet> i) *\<^sub>R i))\<^sup>2 < e^2" .
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1414
      then have "(norm (\<Sum>i\<in>B. (f x \<bullet> i) *\<^sub>R i - (g x \<bullet> i) *\<^sub>R i)) < e"
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1415
        apply (rule power2_less_imp_less)
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1416
        using  \<open>0 < e\<close> by auto
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1417
      then show ?thesis
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
  1418
        using fx that by (simp add: sum_subtractf)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1419
    qed
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1420
  qed
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1421
qed
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1422
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  1423
60987
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1424
hide_fact linear add mult const
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1425
ea00d17eba3b The Stone-Weierstrass theorem
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1426
end