src/HOL/Hahn_Banach/Hahn_Banach.thy
author wenzelm
Mon, 19 Oct 2015 17:45:36 +0200
changeset 61486 3590367b0ce9
parent 59197 c112a24446d4
child 61539 a29295dac1ca
permissions -rw-r--r--
tuned document;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
31795
be3e1cc5005c standard naming conventions for session and theories;
wenzelm
parents: 29291
diff changeset
     1
(*  Title:      HOL/Hahn_Banach/Hahn_Banach.thy
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
     2
    Author:     Gertrud Bauer, TU Munich
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
     3
*)
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
     4
58889
5b7a9633cfa8 modernized header uniformly as section;
wenzelm
parents: 58744
diff changeset
     5
section \<open>The Hahn-Banach Theorem\<close>
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
     6
31795
be3e1cc5005c standard naming conventions for session and theories;
wenzelm
parents: 29291
diff changeset
     7
theory Hahn_Banach
be3e1cc5005c standard naming conventions for session and theories;
wenzelm
parents: 29291
diff changeset
     8
imports Hahn_Banach_Lemmas
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
     9
begin
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
    10
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
    11
text \<open>
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
    12
  We present the proof of two different versions of the Hahn-Banach
58622
aa99568f56de more antiquotations;
wenzelm
parents: 56749
diff changeset
    13
  Theorem, closely following @{cite \<open>\S36\<close> "Heuser:1986"}.
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
    14
\<close>
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
    15
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
    16
subsection \<open>The Hahn-Banach Theorem for vector spaces\<close>
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
    17
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    18
paragraph \<open>Hahn-Banach Theorem.\<close>
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
    19
text \<open>
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    20
  Let @{text F} be a subspace of a real vector space @{text E}, let @{text
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    21
  p} be a semi-norm on @{text E}, and @{text f} be a linear form defined on
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    22
  @{text F} such that @{text f} is bounded by @{text p}, i.e. @{text "\<forall>x \<in>
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    23
  F. f x \<le> p x"}. Then @{text f} can be extended to a linear form @{text h}
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    24
  on @{text E} such that @{text h} is norm-preserving, i.e. @{text h} is
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    25
  also bounded by @{text p}.
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    26
\<close>
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
    27
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    28
paragraph \<open>Proof Sketch.\<close>
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    29
text \<open>
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    30
  \<^enum> Define @{text M} as the set of norm-preserving extensions of
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
    31
  @{text f} to subspaces of @{text E}. The linear forms in @{text M}
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
    32
  are ordered by domain extension.
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
    33
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    34
  \<^enum> We show that every non-empty chain in @{text M} has an upper
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
    35
  bound in @{text M}.
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
    36
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    37
  \<^enum> With Zorn's Lemma we conclude that there is a maximal function
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
    38
  @{text g} in @{text M}.
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
    39
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    40
  \<^enum> The domain @{text H} of @{text g} is the whole space @{text
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
    41
  E}, as shown by classical contradiction:
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
    42
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    43
    \<^item> Assuming @{text g} is not defined on whole @{text E}, it can
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    44
    still be extended in a norm-preserving way to a super-space @{text
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    45
    H'} of @{text H}.
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
    46
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    47
    \<^item> Thus @{text g} can not be maximal. Contradiction!
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
    48
\<close>
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
    49
31795
be3e1cc5005c standard naming conventions for session and theories;
wenzelm
parents: 29291
diff changeset
    50
theorem Hahn_Banach:
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 23378
diff changeset
    51
  assumes E: "vectorspace E" and "subspace F E"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 23378
diff changeset
    52
    and "seminorm E p" and "linearform F f"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    53
  assumes fp: "\<forall>x \<in> F. f x \<le> p x"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    54
  shows "\<exists>h. linearform E h \<and> (\<forall>x \<in> F. h x = f x) \<and> (\<forall>x \<in> E. h x \<le> p x)"
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
    55
    -- \<open>Let @{text E} be a vector space, @{text F} a subspace of @{text E}, @{text p} a seminorm on @{text E},\<close>
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
    56
    -- \<open>and @{text f} a linear form on @{text F} such that @{text f} is bounded by @{text p},\<close>
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
    57
    -- \<open>then @{text f} can be extended to a linear form @{text h} on @{text E} in a norm-preserving way. \<^smallskip>\<close>
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
    58
proof -
29234
60f7fb56f8cd More porting to new locales.
ballarin
parents: 28823
diff changeset
    59
  interpret vectorspace E by fact
60f7fb56f8cd More porting to new locales.
ballarin
parents: 28823
diff changeset
    60
  interpret subspace F E by fact
60f7fb56f8cd More porting to new locales.
ballarin
parents: 28823
diff changeset
    61
  interpret seminorm E p by fact
60f7fb56f8cd More porting to new locales.
ballarin
parents: 28823
diff changeset
    62
  interpret linearform F f by fact
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
    63
  def M \<equiv> "norm_pres_extensions E p F f"
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
    64
  then have M: "M = \<dots>" by (simp only:)
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 23378
diff changeset
    65
  from E have F: "vectorspace F" ..
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
    66
  note FE = \<open>F \<unlhd> E\<close>
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
    67
  {
52183
667961fa6a60 fixed files broken due to Zorn changes (cf. 59e5dd7b8f9a)
popescua
parents: 50918
diff changeset
    68
    fix c assume cM: "c \<in> chains M" and ex: "\<exists>x. x \<in> c"
9503
wenzelm
parents: 9475
diff changeset
    69
    have "\<Union>c \<in> M"
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
    70
      -- \<open>Show that every non-empty chain @{text c} of @{text M} has an upper bound in @{text M}:\<close>
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
    71
      -- \<open>@{text "\<Union>c"} is greater than any element of the chain @{text c}, so it suffices to show @{text "\<Union>c \<in> M"}.\<close>
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
    72
      unfolding M_def
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
    73
    proof (rule norm_pres_extensionI)
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    74
      let ?H = "domain (\<Union>c)"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    75
      let ?h = "funct (\<Union>c)"
8084
c3790c6b4470 small changes;
bauerg
parents: 7978
diff changeset
    76
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    77
      have a: "graph ?H ?h = \<Union>c"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    78
      proof (rule graph_domain_funct)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    79
        fix x y z assume "(x, y) \<in> \<Union>c" and "(x, z) \<in> \<Union>c"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    80
        with M_def cM show "z = y" by (rule sup_definite)
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
    81
      qed
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    82
      moreover from M cM a have "linearform ?H ?h"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    83
        by (rule sup_lf)
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
    84
      moreover from a M cM ex FE E have "?H \<unlhd> E"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    85
        by (rule sup_subE)
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
    86
      moreover from a M cM ex FE have "F \<unlhd> ?H"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    87
        by (rule sup_supF)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    88
      moreover from a M cM ex have "graph F f \<subseteq> graph ?H ?h"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    89
        by (rule sup_ext)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    90
      moreover from a M cM have "\<forall>x \<in> ?H. ?h x \<le> p x"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    91
        by (rule sup_norm_pres)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    92
      ultimately show "\<exists>H h. \<Union>c = graph H h
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    93
          \<and> linearform H h
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    94
          \<and> H \<unlhd> E
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    95
          \<and> F \<unlhd> H
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    96
          \<and> graph F f \<subseteq> graph H h
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    97
          \<and> (\<forall>x \<in> H. h x \<le> p x)" by blast
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
    98
    qed
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
    99
  }
52183
667961fa6a60 fixed files broken due to Zorn changes (cf. 59e5dd7b8f9a)
popescua
parents: 50918
diff changeset
   100
  then have "\<exists>g \<in> M. \<forall>x \<in> M. g \<subseteq> x \<longrightarrow> x = g"
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
   101
  -- \<open>With Zorn's Lemma we can conclude that there is a maximal element in @{text M}. \<^smallskip>\<close>
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   102
  proof (rule Zorn's_Lemma)
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   103
      -- \<open>We show that @{text M} is non-empty:\<close>
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   104
    show "graph F f \<in> M"
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   105
      unfolding M_def
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   106
    proof (rule norm_pres_extensionI2)
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   107
      show "linearform F f" by fact
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   108
      show "F \<unlhd> E" by fact
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   109
      from F show "F \<unlhd> F" by (rule vectorspace.subspace_refl)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   110
      show "graph F f \<subseteq> graph F f" ..
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   111
      show "\<forall>x\<in>F. f x \<le> p x" by fact
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   112
    qed
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   113
  qed
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   114
  then obtain g where gM: "g \<in> M" and gx: "\<forall>x \<in> M. g \<subseteq> x \<longrightarrow> g = x"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   115
    by blast
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   116
  from gM obtain H h where
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   117
      g_rep: "g = graph H h"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   118
    and linearform: "linearform H h"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   119
    and HE: "H \<unlhd> E" and FH: "F \<unlhd> H"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   120
    and graphs: "graph F f \<subseteq> graph H h"
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   121
    and hp: "\<forall>x \<in> H. h x \<le> p x" unfolding M_def ..
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   122
      -- \<open>@{text g} is a norm-preserving extension of @{text f}, in other words:\<close>
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   123
      -- \<open>@{text g} is the graph of some linear form @{text h} defined on a subspace @{text H} of @{text E},\<close>
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
   124
      -- \<open>and @{text h} is an extension of @{text f} that is again bounded by @{text p}. \<^smallskip>\<close>
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   125
  from HE E have H: "vectorspace H"
13547
wenzelm
parents: 13515
diff changeset
   126
    by (rule subspace.vectorspace)
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   127
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   128
  have HE_eq: "H = E"
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
   129
    -- \<open>We show that @{text h} is defined on whole @{text E} by classical contradiction. \<^smallskip>\<close>
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   130
  proof (rule classical)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   131
    assume neq: "H \<noteq> E"
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   132
      -- \<open>Assume @{text h} is not defined on whole @{text E}. Then show that @{text h} can be extended\<close>
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
   133
      -- \<open>in a norm-preserving way to a function @{text h'} with the graph @{text g'}. \<^smallskip>\<close>
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   134
    have "\<exists>g' \<in> M. g \<subseteq> g' \<and> g \<noteq> g'"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   135
    proof -
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   136
      from HE have "H \<subseteq> E" ..
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   137
      with neq obtain x' where x'E: "x' \<in> E" and "x' \<notin> H" by blast
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   138
      obtain x': "x' \<noteq> 0"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   139
      proof
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   140
        show "x' \<noteq> 0"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   141
        proof
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   142
          assume "x' = 0"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   143
          with H have "x' \<in> H" by (simp only: vectorspace.zero)
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   144
          with \<open>x' \<notin> H\<close> show False by contradiction
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   145
        qed
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   146
      qed
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   147
47445
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 46867
diff changeset
   148
      def H' \<equiv> "H + lin x'"
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
   149
        -- \<open>Define @{text H'} as the direct sum of @{text H} and the linear closure of @{text x'}. \<^smallskip>\<close>
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   150
      have HH': "H \<unlhd> H'"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   151
      proof (unfold H'_def)
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   152
        from x'E have "vectorspace (lin x')" ..
47445
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 46867
diff changeset
   153
        with H show "H \<unlhd> H + lin x'" ..
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   154
      qed
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   155
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   156
      obtain xi where
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   157
        xi: "\<forall>y \<in> H. - p (y + x') - h y \<le> xi
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   158
          \<and> xi \<le> p (y + x') - h y"
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   159
        -- \<open>Pick a real number @{text \<xi>} that fulfills certain inequations; this will\<close>
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   160
        -- \<open>be used to establish that @{text h'} is a norm-preserving extension of @{text h}.
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
   161
           \label{ex-xi-use}\<^smallskip>\<close>
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   162
      proof -
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   163
        from H have "\<exists>xi. \<forall>y \<in> H. - p (y + x') - h y \<le> xi
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   164
            \<and> xi \<le> p (y + x') - h y"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   165
        proof (rule ex_xi)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   166
          fix u v assume u: "u \<in> H" and v: "v \<in> H"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   167
          with HE have uE: "u \<in> E" and vE: "v \<in> E" by auto
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   168
          from H u v linearform have "h v - h u = h (v - u)"
13547
wenzelm
parents: 13515
diff changeset
   169
            by (simp add: linearform.diff)
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   170
          also from hp and H u v have "\<dots> \<le> p (v - u)"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   171
            by (simp only: vectorspace.diff_closed)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   172
          also from x'E uE vE have "v - u = x' + - x' + v + - u"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   173
            by (simp add: diff_eq1)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   174
          also from x'E uE vE have "\<dots> = v + x' + - (u + x')"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   175
            by (simp add: add_ac)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   176
          also from x'E uE vE have "\<dots> = (v + x') - (u + x')"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   177
            by (simp add: diff_eq1)
13547
wenzelm
parents: 13515
diff changeset
   178
          also from x'E uE vE E have "p \<dots> \<le> p (v + x') + p (u + x')"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   179
            by (simp add: diff_subadditive)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   180
          finally have "h v - h u \<le> p (v + x') + p (u + x')" .
13547
wenzelm
parents: 13515
diff changeset
   181
          then show "- p (u + x') - h u \<le> p (v + x') - h v" by simp
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   182
        qed
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   183
        then show thesis by (blast intro: that)
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   184
      qed
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   185
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   186
      def h' \<equiv> "\<lambda>x. let (y, a) =
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   187
          SOME (y, a). x = y + a \<cdot> x' \<and> y \<in> H in h y + a * xi"
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
   188
        -- \<open>Define the extension @{text h'} of @{text h} to @{text H'} using @{text \<xi>}. \<^smallskip>\<close>
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   189
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   190
      have "g \<subseteq> graph H' h' \<and> g \<noteq> graph H' h'"
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
   191
        -- \<open>@{text h'} is an extension of @{text h} \dots \<^smallskip>\<close>
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   192
      proof
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   193
        show "g \<subseteq> graph H' h'"
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   194
        proof -
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   195
          have  "graph H h \<subseteq> graph H' h'"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   196
          proof (rule graph_extI)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   197
            fix t assume t: "t \<in> H"
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   198
            from E HE t have "(SOME (y, a). t = y + a \<cdot> x' \<and> y \<in> H) = (t, 0)"
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   199
              using \<open>x' \<notin> H\<close> \<open>x' \<in> E\<close> \<open>x' \<noteq> 0\<close> by (rule decomp_H'_H)
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   200
            with h'_def show "h t = h' t" by (simp add: Let_def)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   201
          next
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   202
            from HH' show "H \<subseteq> H'" ..
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   203
          qed
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   204
          with g_rep show ?thesis by (simp only:)
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   205
        qed
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   206
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   207
        show "g \<noteq> graph H' h'"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   208
        proof -
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   209
          have "graph H h \<noteq> graph H' h'"
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   210
          proof
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   211
            assume eq: "graph H h = graph H' h'"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   212
            have "x' \<in> H'"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   213
              unfolding H'_def
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   214
            proof
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   215
              from H show "0 \<in> H" by (rule vectorspace.zero)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   216
              from x'E show "x' \<in> lin x'" by (rule x_lin_x)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   217
              from x'E show "x' = 0 + x'" by simp
9261
879e0f0cd047 removed sorry;
bauerg
parents: 9256
diff changeset
   218
            qed
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   219
            then have "(x', h' x') \<in> graph H' h'" ..
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   220
            with eq have "(x', h' x') \<in> graph H h" by (simp only:)
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   221
            then have "x' \<in> H" ..
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   222
            with \<open>x' \<notin> H\<close> show False by contradiction
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   223
          qed
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   224
          with g_rep show ?thesis by simp
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   225
        qed
9256
f9a6670427fb completed TYPES version of HahnBanach;
bauerg
parents: 9035
diff changeset
   226
      qed
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   227
      moreover have "graph H' h' \<in> M"
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
   228
        -- \<open>and @{text h'} is norm-preserving. \<^smallskip>\<close>
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   229
      proof (unfold M_def)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   230
        show "graph H' h' \<in> norm_pres_extensions E p F f"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   231
        proof (rule norm_pres_extensionI2)
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   232
          show "linearform H' h'"
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   233
            using h'_def H'_def HE linearform \<open>x' \<notin> H\<close> \<open>x' \<in> E\<close> \<open>x' \<noteq> 0\<close> E
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   234
            by (rule h'_lf)
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   235
          show "H' \<unlhd> E"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   236
          unfolding H'_def
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   237
          proof
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   238
            show "H \<unlhd> E" by fact
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   239
            show "vectorspace E" by fact
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   240
            from x'E show "lin x' \<unlhd> E" ..
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   241
          qed
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   242
          from H \<open>F \<unlhd> H\<close> HH' show FH': "F \<unlhd> H'"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   243
            by (rule vectorspace.subspace_trans)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   244
          show "graph F f \<subseteq> graph H' h'"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   245
          proof (rule graph_extI)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   246
            fix x assume x: "x \<in> F"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   247
            with graphs have "f x = h x" ..
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   248
            also have "\<dots> = h x + 0 * xi" by simp
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   249
            also have "\<dots> = (let (y, a) = (x, 0) in h y + a * xi)"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   250
              by (simp add: Let_def)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   251
            also have "(x, 0) =
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   252
                (SOME (y, a). x = y + a \<cdot> x' \<and> y \<in> H)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   253
              using E HE
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   254
            proof (rule decomp_H'_H [symmetric])
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   255
              from FH x show "x \<in> H" ..
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   256
              from x' show "x' \<noteq> 0" .
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   257
              show "x' \<notin> H" by fact
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   258
              show "x' \<in> E" by fact
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   259
            qed
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   260
            also have
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   261
              "(let (y, a) = (SOME (y, a). x = y + a \<cdot> x' \<and> y \<in> H)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   262
              in h y + a * xi) = h' x" by (simp only: h'_def)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   263
            finally show "f x = h' x" .
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   264
          next
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   265
            from FH' show "F \<subseteq> H'" ..
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   266
          qed
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   267
          show "\<forall>x \<in> H'. h' x \<le> p x"
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   268
            using h'_def H'_def \<open>x' \<notin> H\<close> \<open>x' \<in> E\<close> \<open>x' \<noteq> 0\<close> E HE
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   269
              \<open>seminorm E p\<close> linearform and hp xi
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   270
            by (rule h'_norm_pres)
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   271
        qed
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   272
      qed
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   273
      ultimately show ?thesis ..
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   274
    qed
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   275
    then have "\<not> (\<forall>x \<in> M. g \<subseteq> x \<longrightarrow> g = x)" by simp
61486
3590367b0ce9 tuned document;
wenzelm
parents: 59197
diff changeset
   276
      -- \<open>So the graph @{text g} of @{text h} cannot be maximal. Contradiction! \<^smallskip>\<close>
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   277
    with gx show "H = E" by contradiction
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   278
  qed
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   279
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   280
  from HE_eq and linearform have "linearform E h"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   281
    by (simp only:)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   282
  moreover have "\<forall>x \<in> F. h x = f x"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   283
  proof
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   284
    fix x assume "x \<in> F"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   285
    with graphs have "f x = h x" ..
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   286
    then show "h x = f x" ..
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   287
  qed
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   288
  moreover from HE_eq and hp have "\<forall>x \<in> E. h x \<le> p x"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   289
    by (simp only:)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   290
  ultimately show ?thesis by blast
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   291
qed
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
   292
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
   293
59197
c112a24446d4 tuned whitespace;
wenzelm
parents: 58889
diff changeset
   294
subsection \<open>Alternative formulation\<close>
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
   295
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   296
text \<open>
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   297
  The following alternative formulation of the Hahn-Banach
31795
be3e1cc5005c standard naming conventions for session and theories;
wenzelm
parents: 29291
diff changeset
   298
  Theorem\label{abs-Hahn-Banach} uses the fact that for a real linear
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   299
  form @{text f} and a seminorm @{text p} the following inequations
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   300
  are equivalent:\footnote{This was shown in lemma @{thm [source]
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   301
  abs_ineq_iff} (see page \pageref{abs-ineq-iff}).}
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   302
  \begin{center}
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   303
  \begin{tabular}{lll}
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   304
  @{text "\<forall>x \<in> H. \<bar>h x\<bar> \<le> p x"} & and &
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   305
  @{text "\<forall>x \<in> H. h x \<le> p x"} \\
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   306
  \end{tabular}
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   307
  \end{center}
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   308
\<close>
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
   309
31795
be3e1cc5005c standard naming conventions for session and theories;
wenzelm
parents: 29291
diff changeset
   310
theorem abs_Hahn_Banach:
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 23378
diff changeset
   311
  assumes E: "vectorspace E" and FE: "subspace F E"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 23378
diff changeset
   312
    and lf: "linearform F f" and sn: "seminorm E p"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   313
  assumes fp: "\<forall>x \<in> F. \<bar>f x\<bar> \<le> p x"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   314
  shows "\<exists>g. linearform E g
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   315
    \<and> (\<forall>x \<in> F. g x = f x)
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   316
    \<and> (\<forall>x \<in> E. \<bar>g x\<bar> \<le> p x)"
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
   317
proof -
29234
60f7fb56f8cd More porting to new locales.
ballarin
parents: 28823
diff changeset
   318
  interpret vectorspace E by fact
60f7fb56f8cd More porting to new locales.
ballarin
parents: 28823
diff changeset
   319
  interpret subspace F E by fact
60f7fb56f8cd More porting to new locales.
ballarin
parents: 28823
diff changeset
   320
  interpret linearform F f by fact
60f7fb56f8cd More porting to new locales.
ballarin
parents: 28823
diff changeset
   321
  interpret seminorm E p by fact
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   322
  have "\<exists>g. linearform E g \<and> (\<forall>x \<in> F. g x = f x) \<and> (\<forall>x \<in> E. g x \<le> p x)"
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   323
    using E FE sn lf
31795
be3e1cc5005c standard naming conventions for session and theories;
wenzelm
parents: 29291
diff changeset
   324
  proof (rule Hahn_Banach)
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   325
    show "\<forall>x \<in> F. f x \<le> p x"
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   326
      using FE E sn lf and fp by (rule abs_ineq_iff [THEN iffD1])
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   327
  qed
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   328
  then obtain g where lg: "linearform E g" and *: "\<forall>x \<in> F. g x = f x"
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   329
      and **: "\<forall>x \<in> E. g x \<le> p x" by blast
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   330
  have "\<forall>x \<in> E. \<bar>g x\<bar> \<le> p x"
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   331
    using _ E sn lg **
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   332
  proof (rule abs_ineq_iff [THEN iffD2])
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   333
    show "E \<unlhd> E" ..
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   334
  qed
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   335
  with lg * show ?thesis by blast
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   336
qed
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   337
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
   338
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   339
subsection \<open>The Hahn-Banach Theorem for normed spaces\<close>
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
   340
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   341
text \<open>
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   342
  Every continuous linear form @{text f} on a subspace @{text F} of a
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   343
  norm space @{text E}, can be extended to a continuous linear form
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   344
  @{text g} on @{text E} such that @{text "\<parallel>f\<parallel> = \<parallel>g\<parallel>"}.
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   345
\<close>
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
   346
31795
be3e1cc5005c standard naming conventions for session and theories;
wenzelm
parents: 29291
diff changeset
   347
theorem norm_Hahn_Banach:
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 23378
diff changeset
   348
  fixes V and norm ("\<parallel>_\<parallel>")
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 23378
diff changeset
   349
  fixes B defines "\<And>V f. B V f \<equiv> {0} \<union> {\<bar>f x\<bar> / \<parallel>x\<parallel> | x. x \<noteq> 0 \<and> x \<in> V}"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 23378
diff changeset
   350
  fixes fn_norm ("\<parallel>_\<parallel>\<hyphen>_" [0, 1000] 999)
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 23378
diff changeset
   351
  defines "\<And>V f. \<parallel>f\<parallel>\<hyphen>V \<equiv> \<Squnion>(B V f)"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 23378
diff changeset
   352
  assumes E_norm: "normed_vectorspace E norm" and FE: "subspace F E"
46867
0883804b67bb modernized locale expression, with some fluctuation of arguments;
wenzelm
parents: 44190
diff changeset
   353
    and linearform: "linearform F f" and "continuous F f norm"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   354
  shows "\<exists>g. linearform E g
46867
0883804b67bb modernized locale expression, with some fluctuation of arguments;
wenzelm
parents: 44190
diff changeset
   355
     \<and> continuous E g norm
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   356
     \<and> (\<forall>x \<in> F. g x = f x)
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   357
     \<and> \<parallel>g\<parallel>\<hyphen>E = \<parallel>f\<parallel>\<hyphen>F"
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   358
proof -
29234
60f7fb56f8cd More porting to new locales.
ballarin
parents: 28823
diff changeset
   359
  interpret normed_vectorspace E norm by fact
60f7fb56f8cd More porting to new locales.
ballarin
parents: 28823
diff changeset
   360
  interpret normed_vectorspace_with_fn_norm E norm B fn_norm
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 23378
diff changeset
   361
    by (auto simp: B_def fn_norm_def) intro_locales
29234
60f7fb56f8cd More porting to new locales.
ballarin
parents: 28823
diff changeset
   362
  interpret subspace F E by fact
60f7fb56f8cd More porting to new locales.
ballarin
parents: 28823
diff changeset
   363
  interpret linearform F f by fact
46867
0883804b67bb modernized locale expression, with some fluctuation of arguments;
wenzelm
parents: 44190
diff changeset
   364
  interpret continuous F f norm by fact
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 27612
diff changeset
   365
  have E: "vectorspace E" by intro_locales
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 27612
diff changeset
   366
  have F: "vectorspace F" by rule intro_locales
14214
5369d671f100 Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents: 13547
diff changeset
   367
  have F_norm: "normed_vectorspace F norm"
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 19984
diff changeset
   368
    using FE E_norm by (rule subspace_normed_vs)
13547
wenzelm
parents: 13515
diff changeset
   369
  have ge_zero: "0 \<le> \<parallel>f\<parallel>\<hyphen>F"
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 23378
diff changeset
   370
    by (rule normed_vectorspace_with_fn_norm.fn_norm_ge_zero
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 23378
diff changeset
   371
      [OF normed_vectorspace_with_fn_norm.intro,
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   372
       OF F_norm \<open>continuous F f norm\<close> , folded B_def fn_norm_def])
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   373
  txt \<open>We define a function @{text p} on @{text E} as follows:
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   374
    @{text "p x = \<parallel>f\<parallel> \<cdot> \<parallel>x\<parallel>"}\<close>
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   375
  def p \<equiv> "\<lambda>x. \<parallel>f\<parallel>\<hyphen>F * \<parallel>x\<parallel>"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   376
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   377
  txt \<open>@{text p} is a seminorm on @{text E}:\<close>
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   378
  have q: "seminorm E p"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   379
  proof
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   380
    fix x y a assume x: "x \<in> E" and y: "y \<in> E"
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   381
    
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   382
    txt \<open>@{text p} is positive definite:\<close>
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   383
    have "0 \<le> \<parallel>f\<parallel>\<hyphen>F" by (rule ge_zero)
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   384
    moreover from x have "0 \<le> \<parallel>x\<parallel>" ..
14710
247615bfffb8 replaced Aux.thy by RealLemmas.thy
bauerg
parents: 14334
diff changeset
   385
    ultimately show "0 \<le> p x"  
247615bfffb8 replaced Aux.thy by RealLemmas.thy
bauerg
parents: 14334
diff changeset
   386
      by (simp add: p_def zero_le_mult_iff)
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   387
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   388
    txt \<open>@{text p} is absolutely homogeneous:\<close>
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   389
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   390
    show "p (a \<cdot> x) = \<bar>a\<bar> * p x"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   391
    proof -
13547
wenzelm
parents: 13515
diff changeset
   392
      have "p (a \<cdot> x) = \<parallel>f\<parallel>\<hyphen>F * \<parallel>a \<cdot> x\<parallel>" by (simp only: p_def)
wenzelm
parents: 13515
diff changeset
   393
      also from x have "\<parallel>a \<cdot> x\<parallel> = \<bar>a\<bar> * \<parallel>x\<parallel>" by (rule abs_homogenous)
wenzelm
parents: 13515
diff changeset
   394
      also have "\<parallel>f\<parallel>\<hyphen>F * (\<bar>a\<bar> * \<parallel>x\<parallel>) = \<bar>a\<bar> * (\<parallel>f\<parallel>\<hyphen>F * \<parallel>x\<parallel>)" by simp
wenzelm
parents: 13515
diff changeset
   395
      also have "\<dots> = \<bar>a\<bar> * p x" by (simp only: p_def)
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   396
      finally show ?thesis .
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   397
    qed
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   398
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   399
    txt \<open>Furthermore, @{text p} is subadditive:\<close>
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   400
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   401
    show "p (x + y) \<le> p x + p y"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   402
    proof -
13547
wenzelm
parents: 13515
diff changeset
   403
      have "p (x + y) = \<parallel>f\<parallel>\<hyphen>F * \<parallel>x + y\<parallel>" by (simp only: p_def)
14710
247615bfffb8 replaced Aux.thy by RealLemmas.thy
bauerg
parents: 14334
diff changeset
   404
      also have a: "0 \<le> \<parallel>f\<parallel>\<hyphen>F" by (rule ge_zero)
247615bfffb8 replaced Aux.thy by RealLemmas.thy
bauerg
parents: 14334
diff changeset
   405
      from x y have "\<parallel>x + y\<parallel> \<le> \<parallel>x\<parallel> + \<parallel>y\<parallel>" ..
247615bfffb8 replaced Aux.thy by RealLemmas.thy
bauerg
parents: 14334
diff changeset
   406
      with a have " \<parallel>f\<parallel>\<hyphen>F * \<parallel>x + y\<parallel> \<le> \<parallel>f\<parallel>\<hyphen>F * (\<parallel>x\<parallel> + \<parallel>y\<parallel>)"
247615bfffb8 replaced Aux.thy by RealLemmas.thy
bauerg
parents: 14334
diff changeset
   407
        by (simp add: mult_left_mono)
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 47445
diff changeset
   408
      also have "\<dots> = \<parallel>f\<parallel>\<hyphen>F * \<parallel>x\<parallel> + \<parallel>f\<parallel>\<hyphen>F * \<parallel>y\<parallel>" by (simp only: distrib_left)
13547
wenzelm
parents: 13515
diff changeset
   409
      also have "\<dots> = p x + p y" by (simp only: p_def)
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   410
      finally show ?thesis .
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   411
    qed
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   412
  qed
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   413
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   414
  txt \<open>@{text f} is bounded by @{text p}.\<close>
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
   415
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   416
  have "\<forall>x \<in> F. \<bar>f x\<bar> \<le> p x"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   417
  proof
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   418
    fix x assume "x \<in> F"
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   419
    with \<open>continuous F f norm\<close> and linearform
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   420
    show "\<bar>f x\<bar> \<le> p x"
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   421
      unfolding p_def by (rule normed_vectorspace_with_fn_norm.fn_norm_le_cong
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 23378
diff changeset
   422
        [OF normed_vectorspace_with_fn_norm.intro,
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 23378
diff changeset
   423
         OF F_norm, folded B_def fn_norm_def])
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   424
  qed
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   425
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   426
  txt \<open>Using the fact that @{text p} is a seminorm and @{text f} is bounded
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   427
    by @{text p} we can apply the Hahn-Banach Theorem for real vector
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   428
    spaces. So @{text f} can be extended in a norm-preserving way to
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   429
    some function @{text g} on the whole vector space @{text E}.\<close>
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   430
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   431
  with E FE linearform q obtain g where
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   432
      linearformE: "linearform E g"
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   433
    and a: "\<forall>x \<in> F. g x = f x"
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   434
    and b: "\<forall>x \<in> E. \<bar>g x\<bar> \<le> p x"
31795
be3e1cc5005c standard naming conventions for session and theories;
wenzelm
parents: 29291
diff changeset
   435
    by (rule abs_Hahn_Banach [elim_format]) iprover
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   436
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   437
  txt \<open>We furthermore have to show that @{text g} is also continuous:\<close>
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   438
46867
0883804b67bb modernized locale expression, with some fluctuation of arguments;
wenzelm
parents: 44190
diff changeset
   439
  have g_cont: "continuous E g norm" using linearformE
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   440
  proof
9503
wenzelm
parents: 9475
diff changeset
   441
    fix x assume "x \<in> E"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   442
    with b show "\<bar>g x\<bar> \<le> \<parallel>f\<parallel>\<hyphen>F * \<parallel>x\<parallel>"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   443
      by (simp only: p_def)
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   444
  qed
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
   445
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   446
  txt \<open>To complete the proof, we show that @{text "\<parallel>g\<parallel> = \<parallel>f\<parallel>"}.\<close>
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   447
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   448
  have "\<parallel>g\<parallel>\<hyphen>E = \<parallel>f\<parallel>\<hyphen>F"
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   449
  proof (rule order_antisym)
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   450
    txt \<open>
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   451
      First we show @{text "\<parallel>g\<parallel> \<le> \<parallel>f\<parallel>"}.  The function norm @{text
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   452
      "\<parallel>g\<parallel>"} is defined as the smallest @{text "c \<in> \<real>"} such that
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   453
      \begin{center}
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   454
      \begin{tabular}{l}
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   455
      @{text "\<forall>x \<in> E. \<bar>g x\<bar> \<le> c \<cdot> \<parallel>x\<parallel>"}
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   456
      \end{tabular}
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   457
      \end{center}
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   458
      \noindent Furthermore holds
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   459
      \begin{center}
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   460
      \begin{tabular}{l}
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   461
      @{text "\<forall>x \<in> E. \<bar>g x\<bar> \<le> \<parallel>f\<parallel> \<cdot> \<parallel>x\<parallel>"}
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   462
      \end{tabular}
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   463
      \end{center}
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   464
\<close>
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   465
50918
3b6417e9f73e tuned proofs;
wenzelm
parents: 49962
diff changeset
   466
    from g_cont _ ge_zero
3b6417e9f73e tuned proofs;
wenzelm
parents: 49962
diff changeset
   467
    show "\<parallel>g\<parallel>\<hyphen>E \<le> \<parallel>f\<parallel>\<hyphen>F"
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   468
    proof
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   469
      fix x assume "x \<in> E"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   470
      with b show "\<bar>g x\<bar> \<le> \<parallel>f\<parallel>\<hyphen>F * \<parallel>x\<parallel>"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   471
        by (simp only: p_def)
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
   472
    qed
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
   473
58744
c434e37f290e update_cartouches;
wenzelm
parents: 58622
diff changeset
   474
    txt \<open>The other direction is achieved by a similar argument.\<close>
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   475
13547
wenzelm
parents: 13515
diff changeset
   476
    show "\<parallel>f\<parallel>\<hyphen>F \<le> \<parallel>g\<parallel>\<hyphen>E"
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 23378
diff changeset
   477
    proof (rule normed_vectorspace_with_fn_norm.fn_norm_least
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   478
        [OF normed_vectorspace_with_fn_norm.intro,
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   479
         OF F_norm, folded B_def fn_norm_def])
50918
3b6417e9f73e tuned proofs;
wenzelm
parents: 49962
diff changeset
   480
      fix x assume x: "x \<in> F"
3b6417e9f73e tuned proofs;
wenzelm
parents: 49962
diff changeset
   481
      show "\<bar>f x\<bar> \<le> \<parallel>g\<parallel>\<hyphen>E * \<parallel>x\<parallel>"
3b6417e9f73e tuned proofs;
wenzelm
parents: 49962
diff changeset
   482
      proof -
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   483
        from a x have "g x = f x" ..
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   484
        then have "\<bar>f x\<bar> = \<bar>g x\<bar>" by (simp only:)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   485
        also from g_cont
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   486
        have "\<dots> \<le> \<parallel>g\<parallel>\<hyphen>E * \<parallel>x\<parallel>"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   487
        proof (rule fn_norm_le_cong [OF _ linearformE, folded B_def fn_norm_def])
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   488
          from FE x show "x \<in> E" ..
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   489
        qed
50918
3b6417e9f73e tuned proofs;
wenzelm
parents: 49962
diff changeset
   490
        finally show ?thesis .
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
   491
      qed
50918
3b6417e9f73e tuned proofs;
wenzelm
parents: 49962
diff changeset
   492
    next
13547
wenzelm
parents: 13515
diff changeset
   493
      show "0 \<le> \<parallel>g\<parallel>\<hyphen>E"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   494
        using g_cont
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   495
        by (rule fn_norm_ge_zero [of g, folded B_def fn_norm_def])
46867
0883804b67bb modernized locale expression, with some fluctuation of arguments;
wenzelm
parents: 44190
diff changeset
   496
      show "continuous F f norm" by fact
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10387
diff changeset
   497
    qed
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
   498
  qed
13547
wenzelm
parents: 13515
diff changeset
   499
  with linearformE a g_cont show ?thesis by blast
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   500
qed
9374
153853af318b - xsymbols for
bauerg
parents: 9261
diff changeset
   501
9475
b24516d96847 adapted obtain;
wenzelm
parents: 9394
diff changeset
   502
end