src/HOL/Hahn_Banach/Subspace.thy
author wenzelm
Mon, 19 Oct 2015 17:45:36 +0200
changeset 61486 3590367b0ce9
parent 61076 bdc1e2f0a86a
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: 30729
diff changeset
     1
(*  Title:      HOL/Hahn_Banach/Subspace.thy
7566
c5a3f980a7af accomodate refined facts handling;
wenzelm
parents: 7535
diff changeset
     2
    Author:     Gertrud Bauer, TU Munich
c5a3f980a7af accomodate refined facts handling;
wenzelm
parents: 7535
diff changeset
     3
*)
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
     4
58889
5b7a9633cfa8 modernized header uniformly as section;
wenzelm
parents: 58745
diff changeset
     5
section \<open>Subspaces\<close>
7808
fd019ac3485f update from Gertrud;
wenzelm
parents: 7656
diff changeset
     6
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
     7
theory Subspace
44190
fe5504984937 HOL-Hahn_Banach: use Set_Algebras library
huffman
parents: 32960
diff changeset
     8
imports Vector_Space "~~/src/HOL/Library/Set_Algebras"
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
     9
begin
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
    10
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
    11
subsection \<open>Definition\<close>
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
    12
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
    13
text \<open>
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
    14
  A non-empty subset @{text U} of a vector space @{text V} is a
61486
3590367b0ce9 tuned document;
wenzelm
parents: 61076
diff changeset
    15
  \<^emph>\<open>subspace\<close> of @{text V}, iff @{text U} is closed under addition
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
    16
  and scalar multiplication.
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
    17
\<close>
7917
5e5b9813cce7 HahnBanach update by Gertrud Bauer;
wenzelm
parents: 7808
diff changeset
    18
29234
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
    19
locale subspace =
61076
bdc1e2f0a86a eliminated \<Colon>;
wenzelm
parents: 60412
diff changeset
    20
  fixes U :: "'a::{minus, plus, zero, uminus} set" and V
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    21
  assumes non_empty [iff, intro]: "U \<noteq> {}"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    22
    and subset [iff]: "U \<subseteq> V"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    23
    and add_closed [iff]: "x \<in> U \<Longrightarrow> y \<in> U \<Longrightarrow> x + y \<in> U"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    24
    and mult_closed [iff]: "x \<in> U \<Longrightarrow> a \<cdot> x \<in> U"
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
    25
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 19736
diff changeset
    26
notation (symbols)
19736
wenzelm
parents: 18689
diff changeset
    27
  subspace  (infix "\<unlhd>" 50)
14254
342634f38451 Isar/Locales: <loc>.intro and <loc>.axioms no longer intro? and elim? by
ballarin
parents: 13547
diff changeset
    28
19736
wenzelm
parents: 18689
diff changeset
    29
declare vectorspace.intro [intro?] subspace.intro [intro?]
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
    30
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    31
lemma subspace_subset [elim]: "U \<unlhd> V \<Longrightarrow> U \<subseteq> V"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    32
  by (rule subspace.subset)
7566
c5a3f980a7af accomodate refined facts handling;
wenzelm
parents: 7535
diff changeset
    33
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    34
lemma (in subspace) subsetD [iff]: "x \<in> U \<Longrightarrow> x \<in> V"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    35
  using subset by blast
7566
c5a3f980a7af accomodate refined facts handling;
wenzelm
parents: 7535
diff changeset
    36
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    37
lemma subspaceD [elim]: "U \<unlhd> V \<Longrightarrow> x \<in> U \<Longrightarrow> x \<in> V"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    38
  by (rule subspace.subsetD)
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
    39
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    40
lemma rev_subspaceD [elim?]: "x \<in> U \<Longrightarrow> U \<unlhd> V \<Longrightarrow> x \<in> V"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    41
  by (rule subspace.subsetD)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    42
13547
wenzelm
parents: 13515
diff changeset
    43
lemma (in subspace) diff_closed [iff]:
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    44
  assumes "vectorspace V"
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
    45
  assumes x: "x \<in> U" and y: "y \<in> U"
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
    46
  shows "x - y \<in> U"
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    47
proof -
29234
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
    48
  interpret vectorspace V by fact
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
    49
  from x y show ?thesis by (simp add: diff_eq1 negate_eq1)
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    50
qed
7917
5e5b9813cce7 HahnBanach update by Gertrud Bauer;
wenzelm
parents: 7808
diff changeset
    51
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
    52
text \<open>
61486
3590367b0ce9 tuned document;
wenzelm
parents: 61076
diff changeset
    53
  \<^medskip>
3590367b0ce9 tuned document;
wenzelm
parents: 61076
diff changeset
    54
  Similar as for linear spaces, the existence of the zero
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    55
  element in every subspace follows from the non-emptiness of the
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    56
  carrier set and by vector space laws.
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
    57
\<close>
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    58
13547
wenzelm
parents: 13515
diff changeset
    59
lemma (in subspace) zero [intro]:
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    60
  assumes "vectorspace V"
13547
wenzelm
parents: 13515
diff changeset
    61
  shows "0 \<in> U"
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
    62
proof -
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 29252
diff changeset
    63
  interpret V: vectorspace V by fact
29234
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
    64
  have "U \<noteq> {}" by (rule non_empty)
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    65
  then obtain x where x: "x \<in> U" by blast
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
    66
  then have "x \<in> V" .. then have "0 = x - x" by simp
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
    67
  also from \<open>vectorspace V\<close> x x have "\<dots> \<in> U" by (rule diff_closed)
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    68
  finally show ?thesis .
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
    69
qed
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
    70
13547
wenzelm
parents: 13515
diff changeset
    71
lemma (in subspace) neg_closed [iff]:
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    72
  assumes "vectorspace V"
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
    73
  assumes x: "x \<in> U"
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
    74
  shows "- x \<in> U"
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    75
proof -
29234
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
    76
  interpret vectorspace V by fact
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
    77
  from x show ?thesis by (simp add: negate_eq1)
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    78
qed
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
    79
61486
3590367b0ce9 tuned document;
wenzelm
parents: 61076
diff changeset
    80
text \<open>\<^medskip> Further derived laws: every subspace is a vector space.\<close>
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
    81
13547
wenzelm
parents: 13515
diff changeset
    82
lemma (in subspace) vectorspace [iff]:
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    83
  assumes "vectorspace V"
13547
wenzelm
parents: 13515
diff changeset
    84
  shows "vectorspace U"
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    85
proof -
29234
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
    86
  interpret vectorspace V by fact
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
    87
  show ?thesis
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
    88
  proof
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    89
    show "U \<noteq> {}" ..
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    90
    fix x y z assume x: "x \<in> U" and y: "y \<in> U" and z: "z \<in> U"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    91
    fix a b :: real
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    92
    from x y show "x + y \<in> U" by simp
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    93
    from x show "a \<cdot> x \<in> U" by simp
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    94
    from x y z show "(x + y) + z = x + (y + z)" by (simp add: add_ac)
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    95
    from x y show "x + y = y + x" by (simp add: add_ac)
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    96
    from x show "x - x = 0" by simp
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    97
    from x show "0 + x = x" by simp
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    98
    from x y show "a \<cdot> (x + y) = a \<cdot> x + a \<cdot> y" by (simp add: distrib)
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
    99
    from x show "(a + b) \<cdot> x = a \<cdot> x + b \<cdot> x" by (simp add: distrib)
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   100
    from x show "(a * b) \<cdot> x = a \<cdot> b \<cdot> x" by (simp add: mult_assoc)
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   101
    from x show "1 \<cdot> x = x" by simp
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   102
    from x show "- x = - 1 \<cdot> x" by (simp add: negate_eq1)
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   103
    from x y show "x - y = x + - y" by (simp add: diff_eq1)
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   104
  qed
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   105
qed
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   106
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   107
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   108
text \<open>The subspace relation is reflexive.\<close>
7917
5e5b9813cce7 HahnBanach update by Gertrud Bauer;
wenzelm
parents: 7808
diff changeset
   109
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   110
lemma (in vectorspace) subspace_refl [intro]: "V \<unlhd> V"
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   111
proof
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   112
  show "V \<noteq> {}" ..
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   113
  show "V \<subseteq> V" ..
44887
7ca82df6e951 misc tuning and clarification;
wenzelm
parents: 44190
diff changeset
   114
next
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   115
  fix x y assume x: "x \<in> V" and y: "y \<in> V"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   116
  fix a :: real
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   117
  from x y show "x + y \<in> V" by simp
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   118
  from x show "a \<cdot> x \<in> V" by simp
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   119
qed
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   120
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   121
text \<open>The subspace relation is transitive.\<close>
7917
5e5b9813cce7 HahnBanach update by Gertrud Bauer;
wenzelm
parents: 7808
diff changeset
   122
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   123
lemma (in vectorspace) subspace_trans [trans]:
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   124
  "U \<unlhd> V \<Longrightarrow> V \<unlhd> W \<Longrightarrow> U \<unlhd> W"
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   125
proof
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   126
  assume uv: "U \<unlhd> V" and vw: "V \<unlhd> W"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   127
  from uv show "U \<noteq> {}" by (rule subspace.non_empty)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   128
  show "U \<subseteq> W"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   129
  proof -
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   130
    from uv have "U \<subseteq> V" by (rule subspace.subset)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   131
    also from vw have "V \<subseteq> W" by (rule subspace.subset)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   132
    finally show ?thesis .
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   133
  qed
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   134
  fix x y assume x: "x \<in> U" and y: "y \<in> U"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   135
  from uv and x y show "x + y \<in> U" by (rule subspace.add_closed)
60412
285c7ff27728 tuned proofs;
wenzelm
parents: 58889
diff changeset
   136
  from uv and x show "a \<cdot> x \<in> U" for a by (rule subspace.mult_closed)
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   137
qed
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   138
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   139
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   140
subsection \<open>Linear closure\<close>
7808
fd019ac3485f update from Gertrud;
wenzelm
parents: 7656
diff changeset
   141
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   142
text \<open>
61486
3590367b0ce9 tuned document;
wenzelm
parents: 61076
diff changeset
   143
  The \<^emph>\<open>linear closure\<close> of a vector @{text x} is the set of all
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   144
  scalar multiples of @{text x}.
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   145
\<close>
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   146
58745
wenzelm
parents: 58744
diff changeset
   147
definition lin :: "('a::{minus,plus,zero}) \<Rightarrow> 'a set"
44887
7ca82df6e951 misc tuning and clarification;
wenzelm
parents: 44190
diff changeset
   148
  where "lin x = {a \<cdot> x | a. True}"
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   149
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   150
lemma linI [intro]: "y = a \<cdot> x \<Longrightarrow> y \<in> lin x"
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   151
  unfolding lin_def by blast
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   152
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   153
lemma linI' [iff]: "a \<cdot> x \<in> lin x"
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   154
  unfolding lin_def by blast
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   155
60412
285c7ff27728 tuned proofs;
wenzelm
parents: 58889
diff changeset
   156
lemma linE [elim]:
285c7ff27728 tuned proofs;
wenzelm
parents: 58889
diff changeset
   157
  assumes "x \<in> lin v"
285c7ff27728 tuned proofs;
wenzelm
parents: 58889
diff changeset
   158
  obtains a :: real where "x = a \<cdot> v"
285c7ff27728 tuned proofs;
wenzelm
parents: 58889
diff changeset
   159
  using assms unfolding lin_def by blast
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   160
7656
2f18c0ffc348 update from Gertrud;
wenzelm
parents: 7567
diff changeset
   161
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   162
text \<open>Every vector is contained in its linear closure.\<close>
7917
5e5b9813cce7 HahnBanach update by Gertrud Bauer;
wenzelm
parents: 7808
diff changeset
   163
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   164
lemma (in vectorspace) x_lin_x [iff]: "x \<in> V \<Longrightarrow> x \<in> lin x"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   165
proof -
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   166
  assume "x \<in> V"
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   167
  then have "x = 1 \<cdot> x" by simp
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   168
  also have "\<dots> \<in> lin x" ..
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   169
  finally show ?thesis .
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   170
qed
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   171
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   172
lemma (in vectorspace) "0_lin_x" [iff]: "x \<in> V \<Longrightarrow> 0 \<in> lin x"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   173
proof
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   174
  assume "x \<in> V"
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   175
  then show "0 = 0 \<cdot> x" by simp
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   176
qed
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   177
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   178
text \<open>Any linear closure is a subspace.\<close>
7917
5e5b9813cce7 HahnBanach update by Gertrud Bauer;
wenzelm
parents: 7808
diff changeset
   179
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   180
lemma (in vectorspace) lin_subspace [intro]:
44887
7ca82df6e951 misc tuning and clarification;
wenzelm
parents: 44190
diff changeset
   181
  assumes x: "x \<in> V"
7ca82df6e951 misc tuning and clarification;
wenzelm
parents: 44190
diff changeset
   182
  shows "lin x \<unlhd> V"
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   183
proof
44887
7ca82df6e951 misc tuning and clarification;
wenzelm
parents: 44190
diff changeset
   184
  from x show "lin x \<noteq> {}" by auto
7ca82df6e951 misc tuning and clarification;
wenzelm
parents: 44190
diff changeset
   185
next
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   186
  show "lin x \<subseteq> V"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   187
  proof
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   188
    fix x' assume "x' \<in> lin x"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   189
    then obtain a where "x' = a \<cdot> x" ..
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   190
    with x show "x' \<in> V" by simp
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   191
  qed
44887
7ca82df6e951 misc tuning and clarification;
wenzelm
parents: 44190
diff changeset
   192
next
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   193
  fix x' x'' assume x': "x' \<in> lin x" and x'': "x'' \<in> lin x"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   194
  show "x' + x'' \<in> lin x"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   195
  proof -
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   196
    from x' obtain a' where "x' = a' \<cdot> x" ..
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   197
    moreover from x'' obtain a'' where "x'' = a'' \<cdot> x" ..
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   198
    ultimately have "x' + x'' = (a' + a'') \<cdot> x"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   199
      using x by (simp add: distrib)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   200
    also have "\<dots> \<in> lin x" ..
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   201
    finally show ?thesis .
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   202
  qed
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   203
  fix a :: real
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   204
  show "a \<cdot> x' \<in> lin x"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   205
  proof -
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   206
    from x' obtain a' where "x' = a' \<cdot> x" ..
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   207
    with x have "a \<cdot> x' = (a * a') \<cdot> x" by (simp add: mult_assoc)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   208
    also have "\<dots> \<in> lin x" ..
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   209
    finally show ?thesis .
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   210
  qed
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   211
qed
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   212
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   213
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   214
text \<open>Any linear closure is a vector space.\<close>
7917
5e5b9813cce7 HahnBanach update by Gertrud Bauer;
wenzelm
parents: 7808
diff changeset
   215
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   216
lemma (in vectorspace) lin_vectorspace [intro]:
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 21404
diff changeset
   217
  assumes "x \<in> V"
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 21404
diff changeset
   218
  shows "vectorspace (lin x)"
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 21404
diff changeset
   219
proof -
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   220
  from \<open>x \<in> V\<close> have "subspace (lin x) V"
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 21404
diff changeset
   221
    by (rule lin_subspace)
26199
04817a8802f2 explicit referencing of background facts;
wenzelm
parents: 25762
diff changeset
   222
  from this and vectorspace_axioms show ?thesis
23378
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 21404
diff changeset
   223
    by (rule subspace.vectorspace)
1d138d6bb461 tuned proofs: avoid implicit prems;
wenzelm
parents: 21404
diff changeset
   224
qed
7808
fd019ac3485f update from Gertrud;
wenzelm
parents: 7656
diff changeset
   225
fd019ac3485f update from Gertrud;
wenzelm
parents: 7656
diff changeset
   226
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   227
subsection \<open>Sum of two vectorspaces\<close>
7808
fd019ac3485f update from Gertrud;
wenzelm
parents: 7656
diff changeset
   228
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   229
text \<open>
61486
3590367b0ce9 tuned document;
wenzelm
parents: 61076
diff changeset
   230
  The \<^emph>\<open>sum\<close> of two vectorspaces @{text U} and @{text V} is the
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   231
  set of all sums of elements from @{text U} and @{text V}.
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   232
\<close>
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   233
47445
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   234
lemma sum_def: "U + V = {u + v | u v. u \<in> U \<and> v \<in> V}"
44190
fe5504984937 HOL-Hahn_Banach: use Set_Algebras library
huffman
parents: 32960
diff changeset
   235
  unfolding set_plus_def by auto
7917
5e5b9813cce7 HahnBanach update by Gertrud Bauer;
wenzelm
parents: 7808
diff changeset
   236
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   237
lemma sumE [elim]:
47445
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   238
    "x \<in> U + V \<Longrightarrow> (\<And>u v. x = u + v \<Longrightarrow> u \<in> U \<Longrightarrow> v \<in> V \<Longrightarrow> C) \<Longrightarrow> C"
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   239
  unfolding sum_def by blast
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   240
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   241
lemma sumI [intro]:
47445
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   242
    "u \<in> U \<Longrightarrow> v \<in> V \<Longrightarrow> x = u + v \<Longrightarrow> x \<in> U + V"
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   243
  unfolding sum_def by blast
7566
c5a3f980a7af accomodate refined facts handling;
wenzelm
parents: 7535
diff changeset
   244
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   245
lemma sumI' [intro]:
47445
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   246
    "u \<in> U \<Longrightarrow> v \<in> V \<Longrightarrow> u + v \<in> U + V"
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   247
  unfolding sum_def by blast
7917
5e5b9813cce7 HahnBanach update by Gertrud Bauer;
wenzelm
parents: 7808
diff changeset
   248
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   249
text \<open>@{text U} is a subspace of @{text "U + V"}.\<close>
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   250
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   251
lemma subspace_sum1 [iff]:
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   252
  assumes "vectorspace U" "vectorspace V"
47445
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   253
  shows "U \<unlhd> U + V"
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   254
proof -
29234
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
   255
  interpret vectorspace U by fact
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
   256
  interpret vectorspace V by fact
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   257
  show ?thesis
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   258
  proof
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   259
    show "U \<noteq> {}" ..
47445
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   260
    show "U \<subseteq> U + V"
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   261
    proof
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   262
      fix x assume x: "x \<in> U"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   263
      moreover have "0 \<in> V" ..
47445
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   264
      ultimately have "x + 0 \<in> U + V" ..
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   265
      with x show "x \<in> U + V" by simp
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   266
    qed
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   267
    fix x y assume x: "x \<in> U" and "y \<in> U"
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   268
    then show "x + y \<in> U" by simp
60412
285c7ff27728 tuned proofs;
wenzelm
parents: 58889
diff changeset
   269
    from x show "a \<cdot> x \<in> U" for a by simp
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   270
  qed
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   271
qed
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   272
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   273
text \<open>The sum of two subspaces is again a subspace.\<close>
7917
5e5b9813cce7 HahnBanach update by Gertrud Bauer;
wenzelm
parents: 7808
diff changeset
   274
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   275
lemma sum_subspace [intro?]:
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   276
  assumes "subspace U E" "vectorspace E" "subspace V E"
47445
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   277
  shows "U + V \<unlhd> E"
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   278
proof -
29234
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
   279
  interpret subspace U E by fact
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
   280
  interpret vectorspace E by fact
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
   281
  interpret subspace V E by fact
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   282
  show ?thesis
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   283
  proof
47445
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   284
    have "0 \<in> U + V"
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   285
    proof
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   286
      show "0 \<in> U" using \<open>vectorspace E\<close> ..
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   287
      show "0 \<in> V" using \<open>vectorspace E\<close> ..
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   288
      show "(0::'a) = 0 + 0" by simp
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   289
    qed
47445
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   290
    then show "U + V \<noteq> {}" by blast
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   291
    show "U + V \<subseteq> E"
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   292
    proof
47445
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   293
      fix x assume "x \<in> U + V"
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   294
      then obtain u v where "x = u + v" and
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   295
        "u \<in> U" and "v \<in> V" ..
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   296
      then show "x \<in> E" by simp
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   297
    qed
44887
7ca82df6e951 misc tuning and clarification;
wenzelm
parents: 44190
diff changeset
   298
  next
47445
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   299
    fix x y assume x: "x \<in> U + V" and y: "y \<in> U + V"
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   300
    show "x + y \<in> U + V"
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   301
    proof -
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   302
      from x obtain ux vx where "x = ux + vx" and "ux \<in> U" and "vx \<in> V" ..
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   303
      moreover
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   304
      from y obtain uy vy where "y = uy + vy" and "uy \<in> U" and "vy \<in> V" ..
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   305
      ultimately
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   306
      have "ux + uy \<in> U"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   307
        and "vx + vy \<in> V"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   308
        and "x + y = (ux + uy) + (vx + vy)"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   309
        using x y by (simp_all add: add_ac)
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   310
      then show ?thesis ..
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   311
    qed
47445
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   312
    fix a show "a \<cdot> x \<in> U + V"
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   313
    proof -
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   314
      from x obtain u v where "x = u + v" and "u \<in> U" and "v \<in> V" ..
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   315
      then have "a \<cdot> u \<in> U" and "a \<cdot> v \<in> V"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   316
        and "a \<cdot> x = (a \<cdot> u) + (a \<cdot> v)" by (simp_all add: distrib)
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   317
      then show ?thesis ..
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   318
    qed
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   319
  qed
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   320
qed
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   321
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   322
text\<open>The sum of two subspaces is a vectorspace.\<close>
7917
5e5b9813cce7 HahnBanach update by Gertrud Bauer;
wenzelm
parents: 7808
diff changeset
   323
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   324
lemma sum_vs [intro?]:
47445
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   325
    "U \<unlhd> E \<Longrightarrow> V \<unlhd> E \<Longrightarrow> vectorspace E \<Longrightarrow> vectorspace (U + V)"
13547
wenzelm
parents: 13515
diff changeset
   326
  by (rule subspace.vectorspace) (rule sum_subspace)
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   327
7808
fd019ac3485f update from Gertrud;
wenzelm
parents: 7656
diff changeset
   328
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   329
subsection \<open>Direct sums\<close>
7808
fd019ac3485f update from Gertrud;
wenzelm
parents: 7656
diff changeset
   330
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   331
text \<open>
61486
3590367b0ce9 tuned document;
wenzelm
parents: 61076
diff changeset
   332
  The sum of @{text U} and @{text V} is called \<^emph>\<open>direct\<close>, iff the
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   333
  zero element is the only common element of @{text U} and @{text
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   334
  V}. For every element @{text x} of the direct sum of @{text U} and
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   335
  @{text V} the decomposition in @{text "x = u + v"} with
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   336
  @{text "u \<in> U"} and @{text "v \<in> V"} is unique.
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   337
\<close>
7808
fd019ac3485f update from Gertrud;
wenzelm
parents: 7656
diff changeset
   338
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   339
lemma decomp:
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   340
  assumes "vectorspace E" "subspace U E" "subspace V E"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   341
  assumes direct: "U \<inter> V = {0}"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   342
    and u1: "u1 \<in> U" and u2: "u2 \<in> U"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   343
    and v1: "v1 \<in> V" and v2: "v2 \<in> V"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   344
    and sum: "u1 + v1 = u2 + v2"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   345
  shows "u1 = u2 \<and> v1 = v2"
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   346
proof -
29234
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
   347
  interpret vectorspace E by fact
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
   348
  interpret subspace U E by fact
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
   349
  interpret subspace V E by fact
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   350
  show ?thesis
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   351
  proof
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   352
    have U: "vectorspace U"  (* FIXME: use interpret *)
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   353
      using \<open>subspace U E\<close> \<open>vectorspace E\<close> by (rule subspace.vectorspace)
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   354
    have V: "vectorspace V"
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   355
      using \<open>subspace V E\<close> \<open>vectorspace E\<close> by (rule subspace.vectorspace)
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   356
    from u1 u2 v1 v2 and sum have eq: "u1 - u2 = v2 - v1"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   357
      by (simp add: add_diff_swap)
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   358
    from u1 u2 have u: "u1 - u2 \<in> U"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   359
      by (rule vectorspace.diff_closed [OF U])
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   360
    with eq have v': "v2 - v1 \<in> U" by (simp only:)
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   361
    from v2 v1 have v: "v2 - v1 \<in> V"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   362
      by (rule vectorspace.diff_closed [OF V])
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   363
    with eq have u': " u1 - u2 \<in> V" by (simp only:)
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   364
    
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   365
    show "u1 = u2"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   366
    proof (rule add_minus_eq)
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   367
      from u1 show "u1 \<in> E" ..
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   368
      from u2 show "u2 \<in> E" ..
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   369
      from u u' and direct show "u1 - u2 = 0" by blast
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   370
    qed
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   371
    show "v1 = v2"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   372
    proof (rule add_minus_eq [symmetric])
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   373
      from v1 show "v1 \<in> E" ..
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   374
      from v2 show "v2 \<in> E" ..
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   375
      from v v' and direct show "v2 - v1 = 0" by blast
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   376
    qed
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   377
  qed
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   378
qed
7656
2f18c0ffc348 update from Gertrud;
wenzelm
parents: 7567
diff changeset
   379
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   380
text \<open>
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   381
  An application of the previous lemma will be used in the proof of
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   382
  the Hahn-Banach Theorem (see page \pageref{decomp-H-use}): for any
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   383
  element @{text "y + a \<cdot> x\<^sub>0"} of the direct sum of a
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   384
  vectorspace @{text H} and the linear closure of @{text "x\<^sub>0"}
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   385
  the components @{text "y \<in> H"} and @{text a} are uniquely
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   386
  determined.
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   387
\<close>
7917
5e5b9813cce7 HahnBanach update by Gertrud Bauer;
wenzelm
parents: 7808
diff changeset
   388
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   389
lemma decomp_H':
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   390
  assumes "vectorspace E" "subspace H E"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   391
  assumes y1: "y1 \<in> H" and y2: "y2 \<in> H"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   392
    and x': "x' \<notin> H"  "x' \<in> E"  "x' \<noteq> 0"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   393
    and eq: "y1 + a1 \<cdot> x' = y2 + a2 \<cdot> x'"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   394
  shows "y1 = y2 \<and> a1 = a2"
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   395
proof -
29234
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
   396
  interpret vectorspace E by fact
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
   397
  interpret subspace H E by fact
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   398
  show ?thesis
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   399
  proof
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   400
    have c: "y1 = y2 \<and> a1 \<cdot> x' = a2 \<cdot> x'"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   401
    proof (rule decomp)
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   402
      show "a1 \<cdot> x' \<in> lin x'" ..
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   403
      show "a2 \<cdot> x' \<in> lin x'" ..
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   404
      show "H \<inter> lin x' = {0}"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   405
      proof
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   406
        show "H \<inter> lin x' \<subseteq> {0}"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   407
        proof
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   408
          fix x assume x: "x \<in> H \<inter> lin x'"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   409
          then obtain a where xx': "x = a \<cdot> x'"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   410
            by blast
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   411
          have "x = 0"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   412
          proof cases
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   413
            assume "a = 0"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   414
            with xx' and x' show ?thesis by simp
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   415
          next
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   416
            assume a: "a \<noteq> 0"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   417
            from x have "x \<in> H" ..
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   418
            with xx' have "inverse a \<cdot> a \<cdot> x' \<in> H" by simp
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   419
            with a and x' have "x' \<in> H" by (simp add: mult_assoc2)
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   420
            with \<open>x' \<notin> H\<close> show ?thesis by contradiction
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   421
          qed
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   422
          then show "x \<in> {0}" ..
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   423
        qed
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   424
        show "{0} \<subseteq> H \<inter> lin x'"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   425
        proof -
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   426
          have "0 \<in> H" using \<open>vectorspace E\<close> ..
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   427
          moreover have "0 \<in> lin x'" using \<open>x' \<in> E\<close> ..
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   428
          ultimately show ?thesis by blast
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 31795
diff changeset
   429
        qed
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   430
      qed
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   431
      show "lin x' \<unlhd> E" using \<open>x' \<in> E\<close> ..
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   432
    qed (rule \<open>vectorspace E\<close>, rule \<open>subspace H E\<close>, rule y1, rule y2, rule eq)
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   433
    then show "y1 = y2" ..
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   434
    from c have "a1 \<cdot> x' = a2 \<cdot> x'" ..
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   435
    with x' show "a1 = a2" by (simp add: mult_right_cancel)
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   436
  qed
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   437
qed
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   438
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   439
text \<open>
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   440
  Since for any element @{text "y + a \<cdot> x'"} of the direct sum of a
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   441
  vectorspace @{text H} and the linear closure of @{text x'} the
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   442
  components @{text "y \<in> H"} and @{text a} are unique, it follows from
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   443
  @{text "y \<in> H"} that @{text "a = 0"}.
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   444
\<close>
7917
5e5b9813cce7 HahnBanach update by Gertrud Bauer;
wenzelm
parents: 7808
diff changeset
   445
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   446
lemma decomp_H'_H:
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   447
  assumes "vectorspace E" "subspace H E"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   448
  assumes t: "t \<in> H"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   449
    and x': "x' \<notin> H"  "x' \<in> E"  "x' \<noteq> 0"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   450
  shows "(SOME (y, a). t = y + a \<cdot> x' \<and> y \<in> H) = (t, 0)"
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   451
proof -
29234
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
   452
  interpret vectorspace E by fact
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
   453
  interpret subspace H E by fact
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   454
  show ?thesis
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   455
  proof (rule, simp_all only: split_paired_all split_conv)
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   456
    from t x' show "t = t + 0 \<cdot> x' \<and> t \<in> H" by simp
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   457
    fix y and a assume ya: "t = y + a \<cdot> x' \<and> y \<in> H"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   458
    have "y = t \<and> a = 0"
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   459
    proof (rule decomp_H')
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   460
      from ya x' show "y + a \<cdot> x' = t + 0 \<cdot> x'" by simp
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   461
      from ya show "y \<in> H" ..
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   462
    qed (rule \<open>vectorspace E\<close>, rule \<open>subspace H E\<close>, rule t, (rule x')+)
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   463
    with t x' show "(y, a) = (y + a \<cdot> x', 0)" by simp
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   464
  qed
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   465
qed
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   466
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   467
text \<open>
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   468
  The components @{text "y \<in> H"} and @{text a} in @{text "y + a \<cdot> x'"}
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   469
  are unique, so the function @{text h'} defined by
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   470
  @{text "h' (y + a \<cdot> x') = h y + a \<cdot> \<xi>"} is definite.
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   471
\<close>
7917
5e5b9813cce7 HahnBanach update by Gertrud Bauer;
wenzelm
parents: 7808
diff changeset
   472
9374
153853af318b - xsymbols for
bauerg
parents: 9370
diff changeset
   473
lemma h'_definite:
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   474
  fixes H
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   475
  assumes h'_def:
44887
7ca82df6e951 misc tuning and clarification;
wenzelm
parents: 44190
diff changeset
   476
    "h' \<equiv> \<lambda>x.
7ca82df6e951 misc tuning and clarification;
wenzelm
parents: 44190
diff changeset
   477
      let (y, a) = SOME (y, a). (x = y + a \<cdot> x' \<and> y \<in> H)
7ca82df6e951 misc tuning and clarification;
wenzelm
parents: 44190
diff changeset
   478
      in (h y) + a * xi"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   479
    and x: "x = y + a \<cdot> x'"
27611
2c01c0bdb385 Removed uses of context element includes.
ballarin
parents: 26821
diff changeset
   480
  assumes "vectorspace E" "subspace H E"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   481
  assumes y: "y \<in> H"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   482
    and x': "x' \<notin> H"  "x' \<in> E"  "x' \<noteq> 0"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   483
  shows "h' x = h y + a * xi"
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   484
proof -
29234
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
   485
  interpret vectorspace E by fact
60f7fb56f8cd More porting to new locales.
ballarin
parents: 27612
diff changeset
   486
  interpret subspace H E by fact
47445
69e96e5500df Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
krauss
parents: 44887
diff changeset
   487
  from x y x' have "x \<in> H + lin x'" by auto
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   488
  have "\<exists>!p. (\<lambda>(y, a). x = y + a \<cdot> x' \<and> y \<in> H) p" (is "\<exists>!p. ?P p")
18689
a50587cd8414 prefer ex1I over ex_ex1I in single-step reasoning;
wenzelm
parents: 16417
diff changeset
   489
  proof (rule ex_ex1I)
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   490
    from x y show "\<exists>p. ?P p" by blast
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   491
    fix p q assume p: "?P p" and q: "?P q"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   492
    show "p = q"
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   493
    proof -
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   494
      from p have xp: "x = fst p + snd p \<cdot> x' \<and> fst p \<in> H"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   495
        by (cases p) simp
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   496
      from q have xq: "x = fst q + snd q \<cdot> x' \<and> fst q \<in> H"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   497
        by (cases q) simp
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   498
      have "fst p = fst q \<and> snd p = snd q"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   499
      proof (rule decomp_H')
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   500
        from xp show "fst p \<in> H" ..
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   501
        from xq show "fst q \<in> H" ..
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   502
        from xp and xq show "fst p + snd p \<cdot> x' = fst q + snd q \<cdot> x'"
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   503
          by simp
58744
c434e37f290e update_cartouches;
wenzelm
parents: 47445
diff changeset
   504
      qed (rule \<open>vectorspace E\<close>, rule \<open>subspace H E\<close>, (rule x')+)
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   505
      then show ?thesis by (cases p, cases q) simp
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   506
    qed
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   507
  qed
27612
d3eb431db035 modernized specifications and proofs;
wenzelm
parents: 27611
diff changeset
   508
  then have eq: "(SOME (y, a). x = y + a \<cdot> x' \<and> y \<in> H) = (y, a)"
13515
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   509
    by (rule some1_equality) (simp add: x y)
a6a7025fd7e8 updated to use locales (still some rough edges);
wenzelm
parents: 12018
diff changeset
   510
  with h'_def show "h' x = h y + a * xi" by (simp add: Let_def)
9035
371f023d3dbd removed explicit terminator (";");
wenzelm
parents: 9013
diff changeset
   511
qed
7535
599d3414b51d The Hahn-Banach theorem for real vectorspaces (Isabelle/Isar)
wenzelm
parents:
diff changeset
   512
10687
c186279eecea tuned HOL/Real/HahnBanach;
wenzelm
parents: 10606
diff changeset
   513
end