src/HOL/Analysis/Linear_Algebra.thy
author paulson <lp15@cam.ac.uk>
Wed, 02 May 2018 23:32:47 +0100
changeset 68069 36209dfb981e
parent 68062 ee88c0fccbae
child 68073 fad29d2a17a5
permissions -rw-r--r--
tidying up and using real induction methods
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
63627
6ddb43c6b711 rename HOL-Multivariate_Analysis to HOL-Analysis.
hoelzl
parents: 63469
diff changeset
     1
(*  Title:      HOL/Analysis/Linear_Algebra.thy
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
     2
    Author:     Amine Chaieb, University of Cambridge
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
     3
*)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
     4
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
     5
section \<open>Elementary linear algebra on Euclidean spaces\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
     6
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
     7
theory Linear_Algebra
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
     8
imports
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
     9
  Euclidean_Space
66453
cc19f7ca2ed6 session-qualified theory imports: isabelle imports -U -i -d '~~/src/Benchmarks' -a;
wenzelm
parents: 66447
diff changeset
    10
  "HOL-Library.Infinite_Set"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    11
begin
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    12
63886
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63881
diff changeset
    13
lemma linear_simps:
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63881
diff changeset
    14
  assumes "bounded_linear f"
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63881
diff changeset
    15
  shows
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63881
diff changeset
    16
    "f (a + b) = f a + f b"
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63881
diff changeset
    17
    "f (a - b) = f a - f b"
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63881
diff changeset
    18
    "f 0 = 0"
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63881
diff changeset
    19
    "f (- a) = - f a"
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63881
diff changeset
    20
    "f (s *\<^sub>R v) = s *\<^sub>R (f v)"
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63881
diff changeset
    21
proof -
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63881
diff changeset
    22
  interpret f: bounded_linear f by fact
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63881
diff changeset
    23
  show "f (a + b) = f a + f b" by (rule f.add)
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63881
diff changeset
    24
  show "f (a - b) = f a - f b" by (rule f.diff)
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63881
diff changeset
    25
  show "f 0 = 0" by (rule f.zero)
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63881
diff changeset
    26
  show "f (- a) = - f a" by (rule f.minus)
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63881
diff changeset
    27
  show "f (s *\<^sub>R v) = s *\<^sub>R (f v)" by (rule f.scaleR)
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63881
diff changeset
    28
qed
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63881
diff changeset
    29
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    30
subsection \<open>A generic notion of "hull" (convex, affine, conic hull and closure).\<close>
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    31
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
    32
definition%important hull :: "('a set \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> 'a set"  (infixl "hull" 75)
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    33
  where "S hull s = \<Inter>{t. S t \<and> s \<subseteq> t}"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    34
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    35
lemma hull_same: "S s \<Longrightarrow> S hull s = s"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    36
  unfolding hull_def by auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    37
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    38
lemma hull_in: "(\<And>T. Ball T S \<Longrightarrow> S (\<Inter>T)) \<Longrightarrow> S (S hull s)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    39
  unfolding hull_def Ball_def by auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    40
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    41
lemma hull_eq: "(\<And>T. Ball T S \<Longrightarrow> S (\<Inter>T)) \<Longrightarrow> (S hull s) = s \<longleftrightarrow> S s"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    42
  using hull_same[of S s] hull_in[of S s] by metis
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    43
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    44
lemma hull_hull [simp]: "S hull (S hull s) = S hull s"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    45
  unfolding hull_def by blast
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    46
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    47
lemma hull_subset[intro]: "s \<subseteq> (S hull s)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    48
  unfolding hull_def by blast
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    49
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    50
lemma hull_mono: "s \<subseteq> t \<Longrightarrow> (S hull s) \<subseteq> (S hull t)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    51
  unfolding hull_def by blast
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    52
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    53
lemma hull_antimono: "\<forall>x. S x \<longrightarrow> T x \<Longrightarrow> (T hull s) \<subseteq> (S hull s)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    54
  unfolding hull_def by blast
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    55
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    56
lemma hull_minimal: "s \<subseteq> t \<Longrightarrow> S t \<Longrightarrow> (S hull s) \<subseteq> t"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    57
  unfolding hull_def by blast
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    58
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    59
lemma subset_hull: "S t \<Longrightarrow> S hull s \<subseteq> t \<longleftrightarrow> s \<subseteq> t"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    60
  unfolding hull_def by blast
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    61
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    62
lemma hull_UNIV [simp]: "S hull UNIV = UNIV"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    63
  unfolding hull_def by auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    64
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    65
lemma hull_unique: "s \<subseteq> t \<Longrightarrow> S t \<Longrightarrow> (\<And>t'. s \<subseteq> t' \<Longrightarrow> S t' \<Longrightarrow> t \<subseteq> t') \<Longrightarrow> (S hull s = t)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    66
  unfolding hull_def by auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    67
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
    68
lemma hull_induct: "\<lbrakk>a \<in> Q hull S; \<And>x. x\<in> S \<Longrightarrow> P x; Q {x. P x}\<rbrakk> \<Longrightarrow> P a"
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    69
  using hull_minimal[of S "{x. P x}" Q]
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    70
  by (auto simp add: subset_eq)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    71
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    72
lemma hull_inc: "x \<in> S \<Longrightarrow> x \<in> P hull S"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    73
  by (metis hull_subset subset_eq)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    74
66297
d425bdf419f5 polytopes: simplical subdivisions, etc.
paulson <lp15@cam.ac.uk>
parents: 66287
diff changeset
    75
lemma hull_Un_subset: "(S hull s) \<union> (S hull t) \<subseteq> (S hull (s \<union> t))"
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    76
  unfolding Un_subset_iff by (metis hull_mono Un_upper1 Un_upper2)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    77
66297
d425bdf419f5 polytopes: simplical subdivisions, etc.
paulson <lp15@cam.ac.uk>
parents: 66287
diff changeset
    78
lemma hull_Un:
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    79
  assumes T: "\<And>T. Ball T S \<Longrightarrow> S (\<Inter>T)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    80
  shows "S hull (s \<union> t) = S hull (S hull s \<union> S hull t)"
66297
d425bdf419f5 polytopes: simplical subdivisions, etc.
paulson <lp15@cam.ac.uk>
parents: 66287
diff changeset
    81
  apply (rule equalityI)
d425bdf419f5 polytopes: simplical subdivisions, etc.
paulson <lp15@cam.ac.uk>
parents: 66287
diff changeset
    82
  apply (meson hull_mono hull_subset sup.mono)
d425bdf419f5 polytopes: simplical subdivisions, etc.
paulson <lp15@cam.ac.uk>
parents: 66287
diff changeset
    83
  by (metis hull_Un_subset hull_hull hull_mono)
d425bdf419f5 polytopes: simplical subdivisions, etc.
paulson <lp15@cam.ac.uk>
parents: 66287
diff changeset
    84
d425bdf419f5 polytopes: simplical subdivisions, etc.
paulson <lp15@cam.ac.uk>
parents: 66287
diff changeset
    85
lemma hull_Un_left: "P hull (S \<union> T) = P hull (P hull S \<union> T)"
d425bdf419f5 polytopes: simplical subdivisions, etc.
paulson <lp15@cam.ac.uk>
parents: 66287
diff changeset
    86
  apply (rule equalityI)
d425bdf419f5 polytopes: simplical subdivisions, etc.
paulson <lp15@cam.ac.uk>
parents: 66287
diff changeset
    87
   apply (simp add: Un_commute hull_mono hull_subset sup.coboundedI2)
d425bdf419f5 polytopes: simplical subdivisions, etc.
paulson <lp15@cam.ac.uk>
parents: 66287
diff changeset
    88
  by (metis Un_subset_iff hull_hull hull_mono hull_subset)
d425bdf419f5 polytopes: simplical subdivisions, etc.
paulson <lp15@cam.ac.uk>
parents: 66287
diff changeset
    89
d425bdf419f5 polytopes: simplical subdivisions, etc.
paulson <lp15@cam.ac.uk>
parents: 66287
diff changeset
    90
lemma hull_Un_right: "P hull (S \<union> T) = P hull (S \<union> P hull T)"
d425bdf419f5 polytopes: simplical subdivisions, etc.
paulson <lp15@cam.ac.uk>
parents: 66287
diff changeset
    91
  by (metis hull_Un_left sup.commute)
d425bdf419f5 polytopes: simplical subdivisions, etc.
paulson <lp15@cam.ac.uk>
parents: 66287
diff changeset
    92
d425bdf419f5 polytopes: simplical subdivisions, etc.
paulson <lp15@cam.ac.uk>
parents: 66287
diff changeset
    93
lemma hull_insert:
d425bdf419f5 polytopes: simplical subdivisions, etc.
paulson <lp15@cam.ac.uk>
parents: 66287
diff changeset
    94
   "P hull (insert a S) = P hull (insert a (P hull S))"
d425bdf419f5 polytopes: simplical subdivisions, etc.
paulson <lp15@cam.ac.uk>
parents: 66287
diff changeset
    95
  by (metis hull_Un_right insert_is_Un)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    96
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    97
lemma hull_redundant_eq: "a \<in> (S hull s) \<longleftrightarrow> S hull (insert a s) = S hull s"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    98
  unfolding hull_def by blast
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
    99
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   100
lemma hull_redundant: "a \<in> (S hull s) \<Longrightarrow> S hull (insert a s) = S hull s"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   101
  by (metis hull_redundant_eq)
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   102
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   103
subsection \<open>Linear functions.\<close>
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   104
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
   105
lemma%important linear_iff:
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
   106
  "linear f \<longleftrightarrow> (\<forall>x y. f (x + y) = f x + f y) \<and> (\<forall>c x. f (c *\<^sub>R x) = c *\<^sub>R f x)"
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53596
diff changeset
   107
  (is "linear f \<longleftrightarrow> ?rhs")
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
   108
proof%unimportant
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
   109
  assume "linear f"
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
   110
  then interpret f: linear f .
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53596
diff changeset
   111
  show "?rhs" by (simp add: f.add f.scaleR)
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53596
diff changeset
   112
next
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
   113
  assume "?rhs"
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
   114
  then show "linear f" by unfold_locales simp_all
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53596
diff changeset
   115
qed
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   116
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   117
lemma linear_compose_cmul: "linear f \<Longrightarrow> linear (\<lambda>x. c *\<^sub>R f x)"
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53596
diff changeset
   118
  by (simp add: linear_iff algebra_simps)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   119
63007
aa894a49f77d new theorems about convex hulls, etc.; also, renamed some theorems
paulson <lp15@cam.ac.uk>
parents: 62948
diff changeset
   120
lemma linear_compose_scaleR: "linear f \<Longrightarrow> linear (\<lambda>x. f x *\<^sub>R c)"
aa894a49f77d new theorems about convex hulls, etc.; also, renamed some theorems
paulson <lp15@cam.ac.uk>
parents: 62948
diff changeset
   121
  by (simp add: linear_iff scaleR_add_left)
aa894a49f77d new theorems about convex hulls, etc.; also, renamed some theorems
paulson <lp15@cam.ac.uk>
parents: 62948
diff changeset
   122
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   123
lemma linear_compose_neg: "linear f \<Longrightarrow> linear (\<lambda>x. - f x)"
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53596
diff changeset
   124
  by (simp add: linear_iff)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   125
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   126
lemma linear_compose_add: "linear f \<Longrightarrow> linear g \<Longrightarrow> linear (\<lambda>x. f x + g x)"
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53596
diff changeset
   127
  by (simp add: linear_iff algebra_simps)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   128
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   129
lemma linear_compose_sub: "linear f \<Longrightarrow> linear g \<Longrightarrow> linear (\<lambda>x. f x - g x)"
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53596
diff changeset
   130
  by (simp add: linear_iff algebra_simps)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   131
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   132
lemma linear_compose: "linear f \<Longrightarrow> linear g \<Longrightarrow> linear (g \<circ> f)"
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53596
diff changeset
   133
  by (simp add: linear_iff)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   134
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   135
lemma linear_id: "linear id"
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53596
diff changeset
   136
  by (simp add: linear_iff id_def)
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   137
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   138
lemma linear_zero: "linear (\<lambda>x. 0)"
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53596
diff changeset
   139
  by (simp add: linear_iff)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   140
63072
eb5d493a9e03 renamings and refinements
paulson <lp15@cam.ac.uk>
parents: 63053
diff changeset
   141
lemma linear_uminus: "linear uminus"
eb5d493a9e03 renamings and refinements
paulson <lp15@cam.ac.uk>
parents: 63053
diff changeset
   142
by (simp add: linear_iff)
eb5d493a9e03 renamings and refinements
paulson <lp15@cam.ac.uk>
parents: 63053
diff changeset
   143
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   144
lemma linear_compose_sum:
56196
32b7eafc5a52 remove unnecessary finiteness assumptions from lemmas about setsum
huffman
parents: 56166
diff changeset
   145
  assumes lS: "\<forall>a \<in> S. linear (f a)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   146
  shows "linear (\<lambda>x. sum (\<lambda>a. f a x) S)"
56196
32b7eafc5a52 remove unnecessary finiteness assumptions from lemmas about setsum
huffman
parents: 56166
diff changeset
   147
proof (cases "finite S")
32b7eafc5a52 remove unnecessary finiteness assumptions from lemmas about setsum
huffman
parents: 56166
diff changeset
   148
  case True
32b7eafc5a52 remove unnecessary finiteness assumptions from lemmas about setsum
huffman
parents: 56166
diff changeset
   149
  then show ?thesis
32b7eafc5a52 remove unnecessary finiteness assumptions from lemmas about setsum
huffman
parents: 56166
diff changeset
   150
    using lS by induct (simp_all add: linear_zero linear_compose_add)
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
   151
next
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
   152
  case False
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
   153
  then show ?thesis
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
   154
    by (simp add: linear_zero)
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
   155
qed
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   156
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   157
lemma linear_0: "linear f \<Longrightarrow> f 0 = 0"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   158
  unfolding linear_iff  by (metis real_vector.scale_zero_left)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   159
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   160
lemma linear_cmul: "linear f \<Longrightarrow> f (c *\<^sub>R x) = c *\<^sub>R f x"
60800
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   161
  by (rule linear.scaleR)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   162
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   163
lemma linear_neg: "linear f \<Longrightarrow> f (- x) = - f x"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   164
  using linear_cmul [where c="-1"] by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   165
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
   166
lemma linear_add: "linear f \<Longrightarrow> f (x + y) = f x + f y"
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53596
diff changeset
   167
  by (metis linear_iff)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   168
63469
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
   169
lemma linear_diff: "linear f \<Longrightarrow> f (x - y) = f x - f y"
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 53939
diff changeset
   170
  using linear_add [of f x "- y"] by (simp add: linear_neg)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   171
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   172
lemma linear_sum:
56196
32b7eafc5a52 remove unnecessary finiteness assumptions from lemmas about setsum
huffman
parents: 56166
diff changeset
   173
  assumes f: "linear f"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   174
  shows "f (sum g S) = sum (f \<circ> g) S"
56196
32b7eafc5a52 remove unnecessary finiteness assumptions from lemmas about setsum
huffman
parents: 56166
diff changeset
   175
proof (cases "finite S")
32b7eafc5a52 remove unnecessary finiteness assumptions from lemmas about setsum
huffman
parents: 56166
diff changeset
   176
  case True
32b7eafc5a52 remove unnecessary finiteness assumptions from lemmas about setsum
huffman
parents: 56166
diff changeset
   177
  then show ?thesis
32b7eafc5a52 remove unnecessary finiteness assumptions from lemmas about setsum
huffman
parents: 56166
diff changeset
   178
    by induct (simp_all add: linear_0 [OF f] linear_add [OF f])
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
   179
next
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
   180
  case False
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
   181
  then show ?thesis
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
   182
    by (simp add: linear_0 [OF f])
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
   183
qed
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   184
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   185
lemma linear_sum_mul:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   186
  assumes lin: "linear f"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   187
  shows "f (sum (\<lambda>i. c i *\<^sub>R v i) S) = sum (\<lambda>i. c i *\<^sub>R f (v i)) S"
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   188
  using linear_sum[OF lin, of "\<lambda>i. c i *\<^sub>R v i" , unfolded o_def] linear_cmul[OF lin]
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   189
  by simp
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   190
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   191
lemma linear_injective_0:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   192
  assumes lin: "linear f"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   193
  shows "inj f \<longleftrightarrow> (\<forall>x. f x = 0 \<longrightarrow> x = 0)"
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
   194
proof -
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   195
  have "inj f \<longleftrightarrow> (\<forall> x y. f x = f y \<longrightarrow> x = y)"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   196
    by (simp add: inj_on_def)
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   197
  also have "\<dots> \<longleftrightarrow> (\<forall> x y. f x - f y = 0 \<longrightarrow> x - y = 0)"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   198
    by simp
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   199
  also have "\<dots> \<longleftrightarrow> (\<forall> x y. f (x - y) = 0 \<longrightarrow> x - y = 0)"
63469
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
   200
    by (simp add: linear_diff[OF lin])
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   201
  also have "\<dots> \<longleftrightarrow> (\<forall> x. f x = 0 \<longrightarrow> x = 0)"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   202
    by auto
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   203
  finally show ?thesis .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   204
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   205
61520
8f85bb443d33 Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents: 61518
diff changeset
   206
lemma linear_scaleR  [simp]: "linear (\<lambda>x. scaleR c x)"
8f85bb443d33 Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents: 61518
diff changeset
   207
  by (simp add: linear_iff scaleR_add_right)
8f85bb443d33 Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents: 61518
diff changeset
   208
8f85bb443d33 Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents: 61518
diff changeset
   209
lemma linear_scaleR_left [simp]: "linear (\<lambda>r. scaleR r x)"
8f85bb443d33 Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents: 61518
diff changeset
   210
  by (simp add: linear_iff scaleR_add_left)
8f85bb443d33 Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents: 61518
diff changeset
   211
8f85bb443d33 Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents: 61518
diff changeset
   212
lemma injective_scaleR: "c \<noteq> 0 \<Longrightarrow> inj (\<lambda>x::'a::real_vector. scaleR c x)"
8f85bb443d33 Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents: 61518
diff changeset
   213
  by (simp add: inj_on_def)
8f85bb443d33 Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents: 61518
diff changeset
   214
8f85bb443d33 Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents: 61518
diff changeset
   215
lemma linear_add_cmul:
8f85bb443d33 Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents: 61518
diff changeset
   216
  assumes "linear f"
8f85bb443d33 Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents: 61518
diff changeset
   217
  shows "f (a *\<^sub>R x + b *\<^sub>R y) = a *\<^sub>R f x +  b *\<^sub>R f y"
8f85bb443d33 Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents: 61518
diff changeset
   218
  using linear_add[of f] linear_cmul[of f] assms by simp
8f85bb443d33 Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents: 61518
diff changeset
   219
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   220
subsection \<open>Subspaces of vector spaces\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   221
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
   222
definition%important (in real_vector) subspace :: "'a set \<Rightarrow> bool"
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
   223
  where "subspace S \<longleftrightarrow> 0 \<in> S \<and> (\<forall>x \<in> S. \<forall>y \<in> S. x + y \<in> S) \<and> (\<forall>c. \<forall>x \<in> S. c *\<^sub>R x \<in> S)"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   224
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
   225
definition%important (in real_vector) "span S = (subspace hull S)"
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
   226
definition%important (in real_vector) "dependent S \<longleftrightarrow> (\<exists>a \<in> S. a \<in> span (S - {a}))"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   227
abbreviation (in real_vector) "independent s \<equiv> \<not> dependent s"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   228
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   229
text \<open>Closure properties of subspaces.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   230
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   231
lemma subspace_UNIV[simp]: "subspace UNIV"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   232
  by (simp add: subspace_def)
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   233
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   234
lemma (in real_vector) subspace_0: "subspace S \<Longrightarrow> 0 \<in> S"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   235
  by (metis subspace_def)
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   236
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   237
lemma (in real_vector) subspace_add: "subspace S \<Longrightarrow> x \<in> S \<Longrightarrow> y \<in> S \<Longrightarrow> x + y \<in> S"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   238
  by (metis subspace_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   239
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   240
lemma (in real_vector) subspace_mul: "subspace S \<Longrightarrow> x \<in> S \<Longrightarrow> c *\<^sub>R x \<in> S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   241
  by (metis subspace_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   242
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   243
lemma subspace_neg: "subspace S \<Longrightarrow> x \<in> S \<Longrightarrow> - x \<in> S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   244
  by (metis scaleR_minus1_left subspace_mul)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   245
63114
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
   246
lemma subspace_diff: "subspace S \<Longrightarrow> x \<in> S \<Longrightarrow> y \<in> S \<Longrightarrow> x - y \<in> S"
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 53939
diff changeset
   247
  using subspace_add [of S x "- y"] by (simp add: subspace_neg)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   248
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   249
lemma (in real_vector) subspace_sum:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   250
  assumes sA: "subspace A"
63075
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   251
    and f: "\<And>x. x \<in> B \<Longrightarrow> f x \<in> A"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   252
  shows "sum f B \<in> A"
56196
32b7eafc5a52 remove unnecessary finiteness assumptions from lemmas about setsum
huffman
parents: 56166
diff changeset
   253
proof (cases "finite B")
32b7eafc5a52 remove unnecessary finiteness assumptions from lemmas about setsum
huffman
parents: 56166
diff changeset
   254
  case True
32b7eafc5a52 remove unnecessary finiteness assumptions from lemmas about setsum
huffman
parents: 56166
diff changeset
   255
  then show ?thesis
32b7eafc5a52 remove unnecessary finiteness assumptions from lemmas about setsum
huffman
parents: 56166
diff changeset
   256
    using f by induct (simp_all add: subspace_0 [OF sA] subspace_add [OF sA])
32b7eafc5a52 remove unnecessary finiteness assumptions from lemmas about setsum
huffman
parents: 56166
diff changeset
   257
qed (simp add: subspace_0 [OF sA])
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   258
63075
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   259
lemma subspace_trivial [iff]: "subspace {0}"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   260
  by (simp add: subspace_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   261
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   262
lemma (in real_vector) subspace_inter: "subspace A \<Longrightarrow> subspace B \<Longrightarrow> subspace (A \<inter> B)"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   263
  by (simp add: subspace_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   264
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   265
lemma subspace_Times: "subspace A \<Longrightarrow> subspace B \<Longrightarrow> subspace (A \<times> B)"
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   266
  unfolding subspace_def zero_prod_def by simp
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   267
63075
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   268
lemma subspace_sums: "\<lbrakk>subspace S; subspace T\<rbrakk> \<Longrightarrow> subspace {x + y|x y. x \<in> S \<and> y \<in> T}"
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   269
apply (simp add: subspace_def)
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   270
apply (intro conjI impI allI)
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   271
  using add.right_neutral apply blast
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   272
 apply clarify
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   273
 apply (metis add.assoc add.left_commute)
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   274
using scaleR_add_right by blast
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   275
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
   276
subsection%unimportant \<open>Properties of span\<close>
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   277
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   278
lemma (in real_vector) span_mono: "A \<subseteq> B \<Longrightarrow> span A \<subseteq> span B"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   279
  by (metis span_def hull_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   280
63469
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
   281
lemma (in real_vector) subspace_span [iff]: "subspace (span S)"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   282
  unfolding span_def
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   283
  by (rule hull_in) (auto simp: subspace_def)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   284
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   285
lemma (in real_vector) span_superset: "a \<in> S \<Longrightarrow> a \<in> span S"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   286
        and span_0 [simp]: "0 \<in> span S"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   287
        and span_add: "x \<in> span S \<Longrightarrow> y \<in> span S \<Longrightarrow> x + y \<in> span S"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   288
        and span_mul: "x \<in> span S \<Longrightarrow> c *\<^sub>R x \<in> span S"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   289
  by (metis span_def hull_subset subset_eq) (metis subspace_span subspace_def)+
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   290
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   291
lemmas (in real_vector) span_clauses = span_superset span_0 span_add span_mul
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   292
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   293
lemma span_neg: "x \<in> span S \<Longrightarrow> - x \<in> span S"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   294
  by (metis subspace_neg subspace_span)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   295
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   296
lemma span_diff: "x \<in> span S \<Longrightarrow> y \<in> span S \<Longrightarrow> x - y \<in> span S"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   297
  by (metis subspace_span subspace_diff)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   298
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   299
lemma (in real_vector) span_sum: "(\<And>x. x \<in> A \<Longrightarrow> f x \<in> span S) \<Longrightarrow> sum f A \<in> span S"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   300
  by (rule subspace_sum [OF subspace_span])
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   301
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   302
lemma span_add_eq: "x \<in> span S \<Longrightarrow> x + y \<in> span S \<longleftrightarrow> y \<in> span S"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   303
  by (metis add_minus_cancel scaleR_minus1_left subspace_def subspace_span)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   304
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   305
lemma span_unique:
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   306
  "S \<subseteq> T \<Longrightarrow> subspace T \<Longrightarrow> (\<And>T'. S \<subseteq> T' \<Longrightarrow> subspace T' \<Longrightarrow> T \<subseteq> T') \<Longrightarrow> span S = T"
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   307
  unfolding span_def by (rule hull_unique)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   308
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   309
lemma span_minimal: "S \<subseteq> T \<Longrightarrow> subspace T \<Longrightarrow> span S \<subseteq> T"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   310
  unfolding span_def by (rule hull_minimal)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   311
66641
ff2e0115fea4 Simplicial complexes and triangulations; Baire Category Theorem
paulson <lp15@cam.ac.uk>
parents: 66503
diff changeset
   312
lemma span_UNIV [simp]: "span UNIV = UNIV"
63053
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   313
  by (intro span_unique) auto
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   314
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   315
lemma (in real_vector) span_induct [consumes 1, case_names base step, induct set: span]:
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   316
  assumes x: "x \<in> span S"
63469
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
   317
    and P: "subspace (Collect P)"
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
   318
    and SP: "\<And>x. x \<in> S \<Longrightarrow> P x"
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
   319
  shows "P x"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   320
proof -
63469
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
   321
  from SP have SP': "S \<subseteq> Collect P"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   322
    by (simp add: subset_eq)
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   323
  from x hull_minimal[where S=subspace, OF SP' P, unfolded span_def[symmetric]]
63469
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
   324
  show ?thesis
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
   325
    using subset_eq by force
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   326
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   327
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   328
lemma span_empty[simp]: "span {} = {0}"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   329
  unfolding span_def
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   330
  by (rule hull_unique) (auto simp add: subspace_def)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   331
62948
7700f467892b lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 62623
diff changeset
   332
lemma (in real_vector) independent_empty [iff]: "independent {}"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   333
  by (simp add: dependent_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   334
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   335
lemma dependent_single[simp]: "dependent {x} \<longleftrightarrow> x = 0"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   336
  unfolding dependent_def by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   337
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   338
lemma (in real_vector) independent_mono: "independent A \<Longrightarrow> B \<subseteq> A \<Longrightarrow> independent B"
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
   339
  unfolding dependent_def span_mono
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
   340
  by (metis insert_Diff local.span_mono subsetCE subset_insert_iff) 
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   341
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   342
lemma (in real_vector) span_subspace: "A \<subseteq> B \<Longrightarrow> B \<le> span A \<Longrightarrow>  subspace B \<Longrightarrow> span A = B"
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   343
  by (metis order_antisym span_def hull_minimal)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   344
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
   345
inductive_set (in real_vector) span_induct_alt_help for S :: "'a set"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   346
where
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   347
  span_induct_alt_help_0: "0 \<in> span_induct_alt_help S"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   348
| span_induct_alt_help_S:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   349
    "x \<in> S \<Longrightarrow> z \<in> span_induct_alt_help S \<Longrightarrow>
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   350
      (c *\<^sub>R x + z) \<in> span_induct_alt_help S"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   351
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   352
lemma span_induct_alt [consumes 1, case_names base step, induct set: span]:
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   353
  assumes x: "x \<in> span S"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   354
    and h0: "h 0"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   355
    and hS: "\<And>c x y. x \<in> S \<Longrightarrow> h y \<Longrightarrow> h (c *\<^sub>R x + y)"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   356
  shows "h x"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   357
proof -
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   358
  have th0: "h x" if "x \<in> span_induct_alt_help S" for x
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   359
    by (metis span_induct_alt_help.induct[OF that] h0 hS)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   360
  have "x \<in> span_induct_alt_help S" if "x \<in> span S" for x
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   361
    using that
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   362
  proof (induction x rule: span_induct)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   363
    case base
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   364
    have 0: "0 \<in> span_induct_alt_help S" 
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   365
      by (rule span_induct_alt_help_0)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   366
    moreover
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   367
    have "(x + y) \<in> span_induct_alt_help S"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   368
      if "x \<in> span_induct_alt_help S" "y \<in> span_induct_alt_help S" for x y
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   369
      using that
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   370
      by induct (auto simp: add.assoc span_induct_alt_help.span_induct_alt_help_S)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   371
    moreover
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   372
    have "(c *\<^sub>R x) \<in> span_induct_alt_help S" if "x \<in> span_induct_alt_help S" for c x
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   373
      using that
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   374
      proof (induction rule: span_induct_alt_help.induct)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   375
        case span_induct_alt_help_0
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   376
        then show ?case
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   377
          by (simp add: 0)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   378
      next
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   379
        case (span_induct_alt_help_S x z c)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   380
        then show ?case
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   381
          by (simp add: scaleR_add_right span_induct_alt_help.span_induct_alt_help_S)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   382
      qed 
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   383
    ultimately show ?case
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   384
      unfolding subspace_def Ball_def by blast
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   385
  next
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   386
    case (step x)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   387
    then show ?case
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   388
      using span_induct_alt_help_S[OF step span_induct_alt_help_0, of 1]
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   389
      by simp
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   390
  qed
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   391
  with th0 x show ?thesis by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   392
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   393
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   394
text \<open>Individual closure properties.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   395
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   396
lemma span_span: "span (span A) = span A"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   397
  unfolding span_def hull_hull ..
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   398
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   399
lemma span_inc: "S \<subseteq> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   400
  by (metis subset_eq span_superset)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   401
63053
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   402
lemma span_eq: "span S = span T \<longleftrightarrow> S \<subseteq> span T \<and> T \<subseteq> span S"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   403
  using span_inc[unfolded subset_eq] using span_mono[of T "span S"] span_mono[of S "span T"]
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   404
  by (auto simp add: span_span)
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   405
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   406
lemma (in real_vector) dependent_0:
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   407
  assumes "0 \<in> A"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   408
  shows "dependent A"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   409
  unfolding dependent_def
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   410
  using assms span_0 by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   411
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   412
text \<open>The key breakdown property.\<close>
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   413
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   414
lemma span_singleton: "span {x} = range (\<lambda>k. k *\<^sub>R x)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   415
proof (rule span_unique)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   416
  show "{x} \<subseteq> range (\<lambda>k. k *\<^sub>R x)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   417
    by (fast intro: scaleR_one [symmetric])
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   418
  show "subspace (range (\<lambda>k. k *\<^sub>R x))"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   419
    unfolding subspace_def
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   420
    by (auto intro: scaleR_add_left [symmetric])
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   421
next
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   422
  fix T
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   423
  assume "{x} \<subseteq> T" and "subspace T"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   424
  then show "range (\<lambda>k. k *\<^sub>R x) \<subseteq> T"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   425
    unfolding subspace_def by auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   426
qed
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   427
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   428
text \<open>Mapping under linear image.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   429
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   430
lemma subspace_linear_image:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   431
  assumes lf: "linear f"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   432
    and sS: "subspace S"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   433
  shows "subspace (f ` S)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   434
  using lf sS linear_0[OF lf]
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   435
  unfolding linear_iff subspace_def
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   436
  apply (auto simp add: image_iff)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   437
  apply (rule_tac x="x + y" in bexI)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   438
  apply auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   439
  apply (rule_tac x="c *\<^sub>R x" in bexI)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   440
  apply auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   441
  done
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   442
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   443
lemma subspace_linear_vimage: "linear f \<Longrightarrow> subspace S \<Longrightarrow> subspace (f -` S)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   444
  by (auto simp add: subspace_def linear_iff linear_0[of f])
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   445
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   446
lemma subspace_linear_preimage: "linear f \<Longrightarrow> subspace S \<Longrightarrow> subspace {x. f x \<in> S}"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   447
  by (auto simp add: subspace_def linear_iff linear_0[of f])
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
   448
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   449
lemma span_linear_image:
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   450
  assumes lf: "linear f"
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
   451
  shows "span (f ` S) = f ` span S"
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   452
proof (rule span_unique)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   453
  show "f ` S \<subseteq> f ` span S"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   454
    by (intro image_mono span_inc)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   455
  show "subspace (f ` span S)"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   456
    using lf subspace_span by (rule subspace_linear_image)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   457
next
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   458
  fix T
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   459
  assume "f ` S \<subseteq> T" and "subspace T"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   460
  then show "f ` span S \<subseteq> T"
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   461
    unfolding image_subset_iff_subset_vimage
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   462
    by (intro span_minimal subspace_linear_vimage lf)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   463
qed
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   464
63053
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   465
lemma spans_image:
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   466
  assumes lf: "linear f"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   467
    and VB: "V \<subseteq> span B"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   468
  shows "f ` V \<subseteq> span (f ` B)"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   469
  unfolding span_linear_image[OF lf] by (metis VB image_mono)
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   470
63469
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
   471
lemma span_Un: "span (A \<union> B) = (\<lambda>(a, b). a + b) ` (span A \<times> span B)"
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   472
proof (rule span_unique)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   473
  show "A \<union> B \<subseteq> (\<lambda>(a, b). a + b) ` (span A \<times> span B)"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   474
    by safe (force intro: span_clauses)+
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   475
next
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   476
  have "linear (\<lambda>(a, b). a + b)"
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53596
diff changeset
   477
    by (simp add: linear_iff scaleR_add_right)
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   478
  moreover have "subspace (span A \<times> span B)"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   479
    by (intro subspace_Times subspace_span)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   480
  ultimately show "subspace ((\<lambda>(a, b). a + b) ` (span A \<times> span B))"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   481
    by (rule subspace_linear_image)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   482
next
49711
e5aaae7eadc9 tuned proofs;
wenzelm
parents: 49663
diff changeset
   483
  fix T
e5aaae7eadc9 tuned proofs;
wenzelm
parents: 49663
diff changeset
   484
  assume "A \<union> B \<subseteq> T" and "subspace T"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   485
  then show "(\<lambda>(a, b). a + b) ` (span A \<times> span B) \<subseteq> T"
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   486
    by (auto intro!: subspace_add elim: span_induct)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   487
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   488
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   489
lemma span_insert: "span (insert a S) = {x. \<exists>k. (x - k *\<^sub>R a) \<in> span S}"
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   490
proof -
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   491
  have "span ({a} \<union> S) = {x. \<exists>k. (x - k *\<^sub>R a) \<in> span S}"
63469
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
   492
    unfolding span_Un span_singleton
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   493
    apply (auto simp: image_iff)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   494
    apply (metis add_diff_cancel_left')
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   495
    by force
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   496
  then show ?thesis by simp
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   497
qed
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   498
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   499
lemma span_breakdown:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   500
  assumes bS: "b \<in> S"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   501
    and aS: "a \<in> span S"
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   502
  shows "\<exists>k. a - k *\<^sub>R b \<in> span (S - {b})"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   503
  using assms span_insert [of b "S - {b}"]
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   504
  by (simp add: insert_absorb)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   505
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   506
lemma span_breakdown_eq: "x \<in> span (insert a S) \<longleftrightarrow> (\<exists>k. x - k *\<^sub>R a \<in> span S)"
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   507
  by (simp add: span_insert)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   508
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   509
text \<open>Hence some "reversal" results.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   510
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   511
lemma in_span_insert:
49711
e5aaae7eadc9 tuned proofs;
wenzelm
parents: 49663
diff changeset
   512
  assumes a: "a \<in> span (insert b S)"
e5aaae7eadc9 tuned proofs;
wenzelm
parents: 49663
diff changeset
   513
    and na: "a \<notin> span S"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   514
  shows "b \<in> span (insert a S)"
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
   515
proof -
55910
0a756571c7a4 tuned proof
huffman
parents: 55775
diff changeset
   516
  from a obtain k where k: "a - k *\<^sub>R b \<in> span S"
0a756571c7a4 tuned proof
huffman
parents: 55775
diff changeset
   517
    unfolding span_insert by fast
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   518
  show ?thesis
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   519
  proof (cases "k = 0")
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   520
    case True
55910
0a756571c7a4 tuned proof
huffman
parents: 55775
diff changeset
   521
    with k have "a \<in> span S" by simp
0a756571c7a4 tuned proof
huffman
parents: 55775
diff changeset
   522
    with na show ?thesis by simp
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   523
  next
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   524
    case False
55910
0a756571c7a4 tuned proof
huffman
parents: 55775
diff changeset
   525
    from k have "(- inverse k) *\<^sub>R (a - k *\<^sub>R b) \<in> span S"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   526
      by (rule span_mul)
55910
0a756571c7a4 tuned proof
huffman
parents: 55775
diff changeset
   527
    then have "b - inverse k *\<^sub>R a \<in> span S"
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   528
      using \<open>k \<noteq> 0\<close> by (simp add: scaleR_diff_right)
55910
0a756571c7a4 tuned proof
huffman
parents: 55775
diff changeset
   529
    then show ?thesis
0a756571c7a4 tuned proof
huffman
parents: 55775
diff changeset
   530
      unfolding span_insert by fast
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   531
  qed
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   532
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   533
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   534
lemma in_span_delete:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   535
  assumes a: "a \<in> span S"
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
   536
    and na: "a \<notin> span (S - {b})"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   537
  shows "b \<in> span (insert a (S - {b}))"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   538
  apply (rule in_span_insert)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   539
  apply (rule set_rev_mp)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   540
  apply (rule a)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   541
  apply (rule span_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   542
  apply blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   543
  apply (rule na)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   544
  done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   545
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   546
text \<open>Transitivity property.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   547
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   548
lemma span_redundant: "x \<in> span S \<Longrightarrow> span (insert x S) = span S"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   549
  unfolding span_def by (rule hull_redundant)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   550
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   551
lemma span_trans:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   552
  assumes x: "x \<in> span S"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   553
    and y: "y \<in> span (insert x S)"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   554
  shows "y \<in> span S"
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   555
  using assms by (simp only: span_redundant)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   556
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   557
lemma span_insert_0[simp]: "span (insert 0 S) = span S"
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   558
  by (simp only: span_redundant span_0)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   559
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   560
text \<open>An explicit expansion is sometimes needed.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   561
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   562
lemma span_explicit:
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   563
  "span P = {y. \<exists>S u. finite S \<and> S \<subseteq> P \<and> sum (\<lambda>v. u v *\<^sub>R v) S = y}"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   564
  (is "_ = {y. ?h y}" is "_ = {y. \<exists>S u. ?Q S u y}")
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
   565
proof -
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   566
  have "x \<in> span P" if "?h x" for x
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   567
  proof -
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   568
    from that
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   569
    obtain S u where "finite S" and "S \<subseteq> P" and "sum (\<lambda>v. u v *\<^sub>R v) S = x"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   570
      by blast
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   571
    then show ?thesis
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   572
      by (auto intro: span_sum span_mul span_superset)
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   573
  qed
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   574
  moreover
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   575
  have "?h x" if "x \<in> span P" for x
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   576
    using that
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   577
  proof (induction rule: span_induct_alt)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   578
    case base
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   579
    then show ?case
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   580
      by force
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   581
  next
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   582
    case (step c x y)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   583
    then obtain S u where fS: "finite S" and SP: "S\<subseteq>P"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   584
      and u: "sum (\<lambda>v. u v *\<^sub>R v) S = y" by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   585
    let ?S = "insert x S"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   586
    let ?u = "\<lambda>y. if y = x then (if x \<in> S then u y + c else c) else u y"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   587
    from fS SP step have th0: "finite (insert x S)" "insert x S \<subseteq> P"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   588
      by blast+
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   589
    have "?Q ?S ?u (c*\<^sub>R x + y)"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   590
    proof cases
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   591
      assume xS: "x \<in> S"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   592
      have "sum (\<lambda>v. ?u v *\<^sub>R v) ?S = (\<Sum>v\<in>S - {x}. u v *\<^sub>R v) + (u x + c) *\<^sub>R x"
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   593
        using xS by (simp add: sum.remove [OF fS xS] insert_absorb)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   594
      also have "\<dots> = (\<Sum>v\<in>S. u v *\<^sub>R v) + c *\<^sub>R x"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   595
        by (simp add: sum.remove [OF fS xS] algebra_simps)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   596
      also have "\<dots> = c*\<^sub>R x + y"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
   597
        by (simp add: add.commute u)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   598
      finally have "sum (\<lambda>v. ?u v *\<^sub>R v) ?S = c*\<^sub>R x + y" .
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   599
      then show ?thesis using th0 by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   600
    next
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   601
      assume xS: "x \<notin> S"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   602
      have "(\<Sum>v\<in>S. (if v = x then c else u v) *\<^sub>R v) = y"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   603
        unfolding u[symmetric]
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   604
        by (rule sum.cong) (use xS in auto)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   605
      then show ?thesis using fS xS th0
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   606
        by (simp add: add.commute cong del: if_weak_cong)
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   607
    qed
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   608
    then show ?case
55910
0a756571c7a4 tuned proof
huffman
parents: 55775
diff changeset
   609
      by fast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   610
  qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   611
  ultimately show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   612
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   613
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   614
lemma dependent_explicit:
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   615
  "dependent P \<longleftrightarrow> (\<exists>S u. finite S \<and> S \<subseteq> P \<and> (\<exists>v\<in>S. u v \<noteq> 0 \<and> sum (\<lambda>v. u v *\<^sub>R v) S = 0))"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   616
  (is "?lhs = ?rhs")
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   617
proof -
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   618
  {
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   619
    assume dP: "dependent P"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   620
    then obtain a S u where aP: "a \<in> P" and fS: "finite S"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   621
      and SP: "S \<subseteq> P - {a}" and ua: "sum (\<lambda>v. u v *\<^sub>R v) S = a"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   622
      unfolding dependent_def span_explicit by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   623
    let ?S = "insert a S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   624
    let ?u = "\<lambda>y. if y = a then - 1 else u y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   625
    let ?v = a
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   626
    from aP SP have aS: "a \<notin> S"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   627
      by blast
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   628
    have "(\<Sum>v\<in>S. (if v = a then - 1 else u v) *\<^sub>R v) = (\<Sum>v\<in>S. u v *\<^sub>R v)"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   629
      using aS by (auto intro: sum.cong)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   630
    then have s0: "sum (\<lambda>v. ?u v *\<^sub>R v) ?S = 0"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   631
      using fS aS by (simp add: ua)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   632
    moreover from fS SP aP have "finite ?S" "?S \<subseteq> P" "?v \<in> ?S" "?u ?v \<noteq> 0"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   633
      by auto
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   634
    ultimately have ?rhs by fast
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   635
  }
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   636
  moreover
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   637
  {
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   638
    fix S u v
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   639
    assume fS: "finite S"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   640
      and SP: "S \<subseteq> P"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   641
      and vS: "v \<in> S"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   642
      and uv: "u v \<noteq> 0"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   643
      and u: "sum (\<lambda>v. u v *\<^sub>R v) S = 0"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   644
    let ?a = v
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   645
    let ?S = "S - {v}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   646
    let ?u = "\<lambda>i. (- u i) / u v"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   647
    have th0: "?a \<in> P" "finite ?S" "?S \<subseteq> P"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   648
      using fS SP vS by auto
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   649
    have "sum (\<lambda>v. ?u v *\<^sub>R v) ?S =
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   650
      sum (\<lambda>v. (- (inverse (u ?a))) *\<^sub>R (u v *\<^sub>R v)) S - ?u v *\<^sub>R v"
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   651
      using fS vS uv by (simp add: sum_diff1 field_simps)
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   652
    also have "\<dots> = ?a"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   653
      unfolding scaleR_right.sum [symmetric] u using uv by simp
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   654
    finally have "sum (\<lambda>v. ?u v *\<^sub>R v) ?S = ?a" .
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   655
    with th0 have ?lhs
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   656
      unfolding dependent_def span_explicit
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   657
      apply -
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   658
      apply (rule bexI[where x= "?a"])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   659
      apply (simp_all del: scaleR_minus_left)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   660
      apply (rule exI[where x= "?S"])
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   661
      apply (auto simp del: scaleR_minus_left)
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   662
      done
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   663
  }
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   664
  ultimately show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   665
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   666
63075
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   667
lemma dependent_finite:
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   668
  assumes "finite S"
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   669
    shows "dependent S \<longleftrightarrow> (\<exists>u. (\<exists>v \<in> S. u v \<noteq> 0) \<and> (\<Sum>v\<in>S. u v *\<^sub>R v) = 0)"
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   670
           (is "?lhs = ?rhs")
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   671
proof
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   672
  assume ?lhs
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   673
  then obtain T u v
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   674
         where "finite T" "T \<subseteq> S" "v\<in>T" "u v \<noteq> 0" "(\<Sum>v\<in>T. u v *\<^sub>R v) = 0"
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   675
    by (force simp: dependent_explicit)
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   676
  with assms show ?rhs
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   677
    apply (rule_tac x="\<lambda>v. if v \<in> T then u v else 0" in exI)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   678
    apply (auto simp: sum.mono_neutral_right)
63075
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   679
    done
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   680
next
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   681
  assume ?rhs  with assms show ?lhs
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   682
    by (fastforce simp add: dependent_explicit)
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   683
qed
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
   684
63051
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   685
lemma span_alt:
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   686
  "span B = {(\<Sum>x | f x \<noteq> 0. f x *\<^sub>R x) | f. {x. f x \<noteq> 0} \<subseteq> B \<and> finite {x. f x \<noteq> 0}}"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   687
  unfolding span_explicit
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   688
  apply safe
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   689
  subgoal for x S u
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   690
    by (intro exI[of _ "\<lambda>x. if x \<in> S then u x else 0"])
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   691
        (auto intro!: sum.mono_neutral_cong_right)
63051
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   692
  apply auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   693
  done
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   694
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   695
lemma dependent_alt:
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   696
  "dependent B \<longleftrightarrow>
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   697
    (\<exists>X. finite {x. X x \<noteq> 0} \<and> {x. X x \<noteq> 0} \<subseteq> B \<and> (\<Sum>x|X x \<noteq> 0. X x *\<^sub>R x) = 0 \<and> (\<exists>x. X x \<noteq> 0))"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   698
  unfolding dependent_explicit
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   699
  apply safe
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   700
  subgoal for S u v
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   701
    apply (intro exI[of _ "\<lambda>x. if x \<in> S then u x else 0"])
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   702
    apply (subst sum.mono_neutral_cong_left[where T=S])
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   703
    apply (auto intro!: sum.mono_neutral_cong_right cong: rev_conj_cong)
63051
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   704
    done
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   705
  apply auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   706
  done
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   707
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   708
lemma independent_alt:
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   709
  "independent B \<longleftrightarrow>
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   710
    (\<forall>X. finite {x. X x \<noteq> 0} \<longrightarrow> {x. X x \<noteq> 0} \<subseteq> B \<longrightarrow> (\<Sum>x|X x \<noteq> 0. X x *\<^sub>R x) = 0 \<longrightarrow> (\<forall>x. X x = 0))"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   711
  unfolding dependent_alt by auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   712
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   713
lemma independentD_alt:
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   714
  "independent B \<Longrightarrow> finite {x. X x \<noteq> 0} \<Longrightarrow> {x. X x \<noteq> 0} \<subseteq> B \<Longrightarrow> (\<Sum>x|X x \<noteq> 0. X x *\<^sub>R x) = 0 \<Longrightarrow> X x = 0"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   715
  unfolding independent_alt by blast
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   716
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   717
lemma independentD_unique:
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   718
  assumes B: "independent B"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   719
    and X: "finite {x. X x \<noteq> 0}" "{x. X x \<noteq> 0} \<subseteq> B"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   720
    and Y: "finite {x. Y x \<noteq> 0}" "{x. Y x \<noteq> 0} \<subseteq> B"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   721
    and "(\<Sum>x | X x \<noteq> 0. X x *\<^sub>R x) = (\<Sum>x| Y x \<noteq> 0. Y x *\<^sub>R x)"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   722
  shows "X = Y"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
   723
proof -
63051
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   724
  have "X x - Y x = 0" for x
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   725
    using B
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   726
  proof (rule independentD_alt)
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   727
    have "{x. X x - Y x \<noteq> 0} \<subseteq> {x. X x \<noteq> 0} \<union> {x. Y x \<noteq> 0}"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   728
      by auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   729
    then show "finite {x. X x - Y x \<noteq> 0}" "{x. X x - Y x \<noteq> 0} \<subseteq> B"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   730
      using X Y by (auto dest: finite_subset)
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   731
    then have "(\<Sum>x | X x - Y x \<noteq> 0. (X x - Y x) *\<^sub>R x) = (\<Sum>v\<in>{S. X S \<noteq> 0} \<union> {S. Y S \<noteq> 0}. (X v - Y v) *\<^sub>R v)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   732
      using X Y by (intro sum.mono_neutral_cong_left) auto
63051
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   733
    also have "\<dots> = (\<Sum>v\<in>{S. X S \<noteq> 0} \<union> {S. Y S \<noteq> 0}. X v *\<^sub>R v) - (\<Sum>v\<in>{S. X S \<noteq> 0} \<union> {S. Y S \<noteq> 0}. Y v *\<^sub>R v)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   734
      by (simp add: scaleR_diff_left sum_subtractf assms)
63051
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   735
    also have "(\<Sum>v\<in>{S. X S \<noteq> 0} \<union> {S. Y S \<noteq> 0}. X v *\<^sub>R v) = (\<Sum>v\<in>{S. X S \<noteq> 0}. X v *\<^sub>R v)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   736
      using X Y by (intro sum.mono_neutral_cong_right) auto
63051
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   737
    also have "(\<Sum>v\<in>{S. X S \<noteq> 0} \<union> {S. Y S \<noteq> 0}. Y v *\<^sub>R v) = (\<Sum>v\<in>{S. Y S \<noteq> 0}. Y v *\<^sub>R v)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   738
      using X Y by (intro sum.mono_neutral_cong_right) auto
63051
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   739
    finally show "(\<Sum>x | X x - Y x \<noteq> 0. (X x - Y x) *\<^sub>R x) = 0"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   740
      using assms by simp
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   741
  qed
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   742
  then show ?thesis
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   743
    by auto
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   744
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   745
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   746
text \<open>This is useful for building a basis step-by-step.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   747
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   748
lemma independent_insert:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   749
  "independent (insert a S) \<longleftrightarrow>
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   750
    (if a \<in> S then independent S else independent S \<and> a \<notin> span S)"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   751
  (is "?lhs \<longleftrightarrow> ?rhs")
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   752
proof (cases "a \<in> S")
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   753
  case True
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   754
  then show ?thesis
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   755
    using insert_absorb[OF True] by simp
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   756
next
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   757
  case False
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   758
  show ?thesis
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   759
  proof
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   760
    assume i: ?lhs
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   761
    then show ?rhs
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   762
      using False
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   763
      using dependent_def independent_mono by fastforce
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   764
  next
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   765
    assume i: ?rhs
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   766
    show ?lhs
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   767
      using i False
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   768
      apply (auto simp add: dependent_def)
60810
9ede42599eeb tweaks. Got rid of a really slow step
paulson <lp15@cam.ac.uk>
parents: 60800
diff changeset
   769
      by (metis in_span_insert insert_Diff_if insert_Diff_single insert_absorb)
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
   770
  qed
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   771
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   772
63051
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   773
lemma independent_Union_directed:
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   774
  assumes directed: "\<And>c d. c \<in> C \<Longrightarrow> d \<in> C \<Longrightarrow> c \<subseteq> d \<or> d \<subseteq> c"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   775
  assumes indep: "\<And>c. c \<in> C \<Longrightarrow> independent c"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   776
  shows "independent (\<Union>C)"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   777
proof
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   778
  assume "dependent (\<Union>C)"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   779
  then obtain u v S where S: "finite S" "S \<subseteq> \<Union>C" "v \<in> S" "u v \<noteq> 0" "(\<Sum>v\<in>S. u v *\<^sub>R v) = 0"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   780
    by (auto simp: dependent_explicit)
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   781
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   782
  have "S \<noteq> {}"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   783
    using \<open>v \<in> S\<close> by auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   784
  have "\<exists>c\<in>C. S \<subseteq> c"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   785
    using \<open>finite S\<close> \<open>S \<noteq> {}\<close> \<open>S \<subseteq> \<Union>C\<close>
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   786
  proof (induction rule: finite_ne_induct)
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   787
    case (insert i I)
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   788
    then obtain c d where cd: "c \<in> C" "d \<in> C" and iI: "I \<subseteq> c" "i \<in> d"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   789
      by blast
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   790
    from directed[OF cd] cd have "c \<union> d \<in> C"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   791
      by (auto simp: sup.absorb1 sup.absorb2)
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   792
    with iI show ?case
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   793
      by (intro bexI[of _ "c \<union> d"]) auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   794
  qed auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   795
  then obtain c where "c \<in> C" "S \<subseteq> c"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   796
    by auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   797
  have "dependent c"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   798
    unfolding dependent_explicit
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   799
    by (intro exI[of _ S] exI[of _ u] bexI[of _ v] conjI) fact+
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   800
  with indep[OF \<open>c \<in> C\<close>] show False
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   801
    by auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   802
qed
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   803
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   804
text \<open>Hence we can create a maximal independent subset.\<close>
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   805
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   806
lemma maximal_independent_subset_extend:
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   807
  assumes "S \<subseteq> V" "independent S"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   808
  obtains B where "S \<subseteq> B" "B \<subseteq> V" "independent B" "V \<subseteq> span B"
63051
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   809
proof -
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   810
  let ?C = "{B. S \<subseteq> B \<and> independent B \<and> B \<subseteq> V}"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   811
  have "\<exists>M\<in>?C. \<forall>X\<in>?C. M \<subseteq> X \<longrightarrow> X = M"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   812
  proof (rule subset_Zorn)
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   813
    fix C :: "'a set set" assume "subset.chain ?C C"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   814
    then have C: "\<And>c. c \<in> C \<Longrightarrow> c \<subseteq> V" "\<And>c. c \<in> C \<Longrightarrow> S \<subseteq> c" "\<And>c. c \<in> C \<Longrightarrow> independent c"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   815
      "\<And>c d. c \<in> C \<Longrightarrow> d \<in> C \<Longrightarrow> c \<subseteq> d \<or> d \<subseteq> c"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   816
      unfolding subset.chain_def by blast+
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   817
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   818
    show "\<exists>U\<in>?C. \<forall>X\<in>C. X \<subseteq> U"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   819
    proof cases
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   820
      assume "C = {}" with assms show ?thesis
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   821
        by (auto intro!: exI[of _ S])
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   822
    next
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   823
      assume "C \<noteq> {}"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   824
      with C(2) have "S \<subseteq> \<Union>C"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   825
        by auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   826
      moreover have "independent (\<Union>C)"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   827
        by (intro independent_Union_directed C)
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   828
      moreover have "\<Union>C \<subseteq> V"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   829
        using C by auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   830
      ultimately show ?thesis
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   831
        by auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   832
    qed
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   833
  qed
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   834
  then obtain B where B: "independent B" "B \<subseteq> V" "S \<subseteq> B"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   835
    and max: "\<And>S. independent S \<Longrightarrow> S \<subseteq> V \<Longrightarrow> B \<subseteq> S \<Longrightarrow> S = B"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   836
    by auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   837
  moreover
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   838
  { assume "\<not> V \<subseteq> span B"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   839
    then obtain v where "v \<in> V" "v \<notin> span B"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   840
      by auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   841
    with B have "independent (insert v B)"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   842
      unfolding independent_insert by auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   843
    from max[OF this] \<open>v \<in> V\<close> \<open>B \<subseteq> V\<close>
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   844
    have "v \<in> B"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   845
      by auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   846
    with \<open>v \<notin> span B\<close> have False
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   847
      by (auto intro: span_superset) }
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   848
  ultimately show ?thesis
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   849
    by (meson that)
63051
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   850
qed
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   851
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   852
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   853
lemma maximal_independent_subset:
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   854
  obtains B where "B \<subseteq> V" "independent B" "V \<subseteq> span B"
63051
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   855
  by (metis maximal_independent_subset_extend[of "{}"] empty_subsetI independent_empty)
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   856
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   857
lemma span_finite:
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   858
  assumes fS: "finite S"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   859
  shows "span S = {y. \<exists>u. sum (\<lambda>v. u v *\<^sub>R v) S = y}"
63051
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   860
  (is "_ = ?rhs")
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   861
proof -
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   862
  {
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   863
    fix y
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   864
    assume y: "y \<in> span S"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   865
    from y obtain S' u where fS': "finite S'"
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   866
      and SS': "S' \<subseteq> S"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   867
      and u: "sum (\<lambda>v. u v *\<^sub>R v) S' = y"
63051
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   868
      unfolding span_explicit by blast
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   869
    let ?u = "\<lambda>x. if x \<in> S' then u x else 0"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   870
    have "sum (\<lambda>v. ?u v *\<^sub>R v) S = sum (\<lambda>v. u v *\<^sub>R v) S'"
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   871
      using SS' fS by (auto intro!: sum.mono_neutral_cong_right)
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   872
    then have "sum (\<lambda>v. ?u v *\<^sub>R v) S = y" by (metis u)
63051
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   873
    then have "y \<in> ?rhs" by auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   874
  }
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   875
  moreover
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   876
  {
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   877
    fix y u
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   878
    assume u: "sum (\<lambda>v. u v *\<^sub>R v) S = y"
63051
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   879
    then have "y \<in> span S" using fS unfolding span_explicit by auto
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   880
  }
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   881
  ultimately show ?thesis by blast
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   882
qed
e5e69206d52d Linear_Algebra: alternative representation of linear combination
hoelzl
parents: 63050
diff changeset
   883
63052
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   884
lemma linear_independent_extend_subspace:
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   885
  assumes "independent B"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   886
  shows "\<exists>g. linear g \<and> (\<forall>x\<in>B. g x = f x) \<and> range g = span (f`B)"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   887
proof -
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   888
  from maximal_independent_subset_extend[OF _ \<open>independent B\<close>, of UNIV]
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   889
  obtain B' where "B \<subseteq> B'" "independent B'" "span B' = UNIV"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   890
    by (auto simp: top_unique)
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   891
  have "\<forall>y. \<exists>X. {x. X x \<noteq> 0} \<subseteq> B' \<and> finite {x. X x \<noteq> 0} \<and> y = (\<Sum>x|X x \<noteq> 0. X x *\<^sub>R x)"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   892
    using \<open>span B' = UNIV\<close> unfolding span_alt by auto
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   893
  then obtain X where X: "\<And>y. {x. X y x \<noteq> 0} \<subseteq> B'" "\<And>y. finite {x. X y x \<noteq> 0}"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   894
    "\<And>y. y = (\<Sum>x|X y x \<noteq> 0. X y x *\<^sub>R x)"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   895
    unfolding choice_iff by auto
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   896
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   897
  have X_add: "X (x + y) = (\<lambda>z. X x z + X y z)" for x y
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   898
    using \<open>independent B'\<close>
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   899
  proof (rule independentD_unique)
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   900
    have "(\<Sum>z | X x z + X y z \<noteq> 0. (X x z + X y z) *\<^sub>R z)
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   901
      = (\<Sum>z\<in>{z. X x z \<noteq> 0} \<union> {z. X y z \<noteq> 0}. (X x z + X y z) *\<^sub>R z)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   902
      by (intro sum.mono_neutral_cong_left) (auto intro: X)
63052
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   903
    also have "\<dots> = (\<Sum>z\<in>{z. X x z \<noteq> 0}. X x z *\<^sub>R z) + (\<Sum>z\<in>{z. X y z \<noteq> 0}. X y z *\<^sub>R z)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   904
      by (auto simp add: scaleR_add_left sum.distrib
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66804
diff changeset
   905
               intro!: arg_cong2[where f="(+)"]  sum.mono_neutral_cong_right X)
63052
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   906
    also have "\<dots> = x + y"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   907
      by (simp add: X(3)[symmetric])
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   908
    also have "\<dots> = (\<Sum>z | X (x + y) z \<noteq> 0. X (x + y) z *\<^sub>R z)"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   909
      by (rule X(3))
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   910
    finally show "(\<Sum>z | X (x + y) z \<noteq> 0. X (x + y) z *\<^sub>R z) = (\<Sum>z | X x z + X y z \<noteq> 0. (X x z + X y z) *\<^sub>R z)"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   911
      ..
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   912
    have "{z. X x z + X y z \<noteq> 0} \<subseteq> {z. X x z \<noteq> 0} \<union> {z. X y z \<noteq> 0}"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   913
      by auto
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   914
    then show "finite {z. X x z + X y z \<noteq> 0}" "{xa. X x xa + X y xa \<noteq> 0} \<subseteq> B'"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   915
        "finite {xa. X (x + y) xa \<noteq> 0}" "{xa. X (x + y) xa \<noteq> 0} \<subseteq> B'"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   916
      using X(1) by (auto dest: finite_subset intro: X)
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   917
  qed
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   918
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   919
  have X_cmult: "X (c *\<^sub>R x) = (\<lambda>z. c * X x z)" for x c
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   920
    using \<open>independent B'\<close>
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   921
  proof (rule independentD_unique)
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   922
    show "finite {z. X (c *\<^sub>R x) z \<noteq> 0}" "{z. X (c *\<^sub>R x) z \<noteq> 0} \<subseteq> B'"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   923
      "finite {z. c * X x z \<noteq> 0}" "{z. c * X x z \<noteq> 0} \<subseteq> B' "
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   924
      using X(1,2) by auto
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   925
    show "(\<Sum>z | X (c *\<^sub>R x) z \<noteq> 0. X (c *\<^sub>R x) z *\<^sub>R z) = (\<Sum>z | c * X x z \<noteq> 0. (c * X x z) *\<^sub>R z)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   926
      unfolding scaleR_scaleR[symmetric] scaleR_sum_right[symmetric]
63052
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   927
      by (cases "c = 0") (auto simp: X(3)[symmetric])
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   928
  qed
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   929
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   930
  have X_B': "x \<in> B' \<Longrightarrow> X x = (\<lambda>z. if z = x then 1 else 0)" for x
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   931
    using \<open>independent B'\<close>
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   932
    by (rule independentD_unique[OF _ X(2) X(1)]) (auto intro: X simp: X(3)[symmetric])
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   933
63148
6a767355d1a9 updated 'define';
wenzelm
parents: 63114
diff changeset
   934
  define f' where "f' y = (if y \<in> B then f y else 0)" for y
6a767355d1a9 updated 'define';
wenzelm
parents: 63114
diff changeset
   935
  define g where "g y = (\<Sum>x|X y x \<noteq> 0. X y x *\<^sub>R f' x)" for y
63052
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   936
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   937
  have g_f': "x \<in> B' \<Longrightarrow> g x = f' x" for x
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   938
    by (auto simp: g_def X_B')
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   939
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   940
  have "linear g"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   941
  proof
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   942
    fix x y
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   943
    have *: "(\<Sum>z | X x z + X y z \<noteq> 0. (X x z + X y z) *\<^sub>R f' z)
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   944
      = (\<Sum>z\<in>{z. X x z \<noteq> 0} \<union> {z. X y z \<noteq> 0}. (X x z + X y z) *\<^sub>R f' z)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   945
      by (intro sum.mono_neutral_cong_left) (auto intro: X)
63052
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   946
    show "g (x + y) = g x + g y"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   947
      unfolding g_def X_add *
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   948
      by (auto simp add: scaleR_add_left sum.distrib
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66804
diff changeset
   949
               intro!: arg_cong2[where f="(+)"]  sum.mono_neutral_cong_right X)
63052
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   950
  next
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   951
    show "g (r *\<^sub>R x) = r *\<^sub>R g x" for r x
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
   952
      by (auto simp add: g_def X_cmult scaleR_sum_right intro!: sum.mono_neutral_cong_left X)
63052
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   953
  qed
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   954
  moreover have "\<forall>x\<in>B. g x = f x"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   955
    using \<open>B \<subseteq> B'\<close> by (auto simp: g_f' f'_def)
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   956
  moreover have "range g = span (f`B)"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   957
    unfolding \<open>span B' = UNIV\<close>[symmetric] span_linear_image[OF \<open>linear g\<close>, symmetric]
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   958
  proof (rule span_subspace)
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   959
    have "g ` B' \<subseteq> f`B \<union> {0}"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   960
      by (auto simp: g_f' f'_def)
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   961
    also have "\<dots> \<subseteq> span (f`B)"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   962
      by (auto intro: span_superset span_0)
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   963
    finally show "g ` B' \<subseteq> span (f`B)"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   964
      by auto
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   965
    have "x \<in> B \<Longrightarrow> f x = g x" for x
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   966
      using \<open>B \<subseteq> B'\<close> by (auto simp add: g_f' f'_def)
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   967
    then show "span (f ` B) \<subseteq> span (g ` B')"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   968
      using \<open>B \<subseteq> B'\<close> by (intro span_mono) auto
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   969
  qed (rule subspace_span)
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   970
  ultimately show ?thesis
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   971
    by auto
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   972
qed
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   973
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   974
lemma linear_independent_extend:
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   975
  "independent B \<Longrightarrow> \<exists>g. linear g \<and> (\<forall>x\<in>B. g x = f x)"
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   976
  using linear_independent_extend_subspace[of B f] by auto
c968bce3921e Linear_Algebra: generalize linear_independent_extend to all real vector spaces
hoelzl
parents: 63051
diff changeset
   977
63053
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   978
text \<open>Linear functions are equal on a subspace if they are on a spanning set.\<close>
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   979
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   980
lemma subspace_kernel:
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   981
  assumes lf: "linear f"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   982
  shows "subspace {x. f x = 0}"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   983
  unfolding subspace_def
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
   984
  by (simp add: linear_add[OF lf] linear_cmul[OF lf] linear_0[OF lf])
63053
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   985
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
   986
lemma linear_eq_0_span:
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
   987
  assumes x: "x \<in> span B" and lf: "linear f" and f0: "\<And>x. x\<in>B \<Longrightarrow> f x = 0"
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
   988
  shows "f x = 0"
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
   989
  using x f0 subspace_kernel[OF lf] span_induct
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
   990
  by blast
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
   991
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
   992
lemma linear_eq_0: "\<lbrakk>x \<in> S; linear f; S \<subseteq> span B; \<And>x. x\<in>B \<Longrightarrow> f x = 0\<rbrakk> \<Longrightarrow> f x = 0"
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
   993
  using linear_eq_0_span[of x B f] by auto
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
   994
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
   995
lemma linear_eq_span: "\<lbrakk>x \<in> span B; linear f; linear g; \<And>x. x\<in>B \<Longrightarrow> f x = g x\<rbrakk> \<Longrightarrow> f x = g x"
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
   996
  using linear_eq_0_span[of x B "\<lambda>x. f x - g x"]  by (auto simp: linear_compose_sub)
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
   997
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
   998
lemma linear_eq: "\<lbrakk>x \<in> S; linear f; linear g; S \<subseteq> span B; \<And>x. x\<in>B \<Longrightarrow> f x = g x\<rbrakk> \<Longrightarrow> f x = g x"
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
   999
  using linear_eq_span[of _ B f g] by auto
63053
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1000
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1001
text \<open>The degenerate case of the Exchange Lemma.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1002
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1003
lemma spanning_subset_independent:
49711
e5aaae7eadc9 tuned proofs;
wenzelm
parents: 49663
diff changeset
  1004
  assumes BA: "B \<subseteq> A"
e5aaae7eadc9 tuned proofs;
wenzelm
parents: 49663
diff changeset
  1005
    and iA: "independent A"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  1006
    and AsB: "A \<subseteq> span B"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1007
  shows "A = B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1008
proof
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  1009
  show "B \<subseteq> A" by (rule BA)
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  1010
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1011
  from span_mono[OF BA] span_mono[OF AsB]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1012
  have sAB: "span A = span B" unfolding span_span by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1013
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1014
  show "A \<subseteq> B"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1015
  proof
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1016
    fix x
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1017
    assume x: "x \<in> A"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1018
    from iA have th0: "x \<notin> span (A - {x})"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1019
      unfolding dependent_def using x by blast
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1020
    from x have xsA: "x \<in> span A"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1021
      by (blast intro: span_superset)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1022
    have "A - {x} \<subseteq> A" by blast
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1023
    then have th1: "span (A - {x}) \<subseteq> span A"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1024
      by (metis span_mono)
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1025
    show "x \<in> B"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1026
    proof (rule ccontr)
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1027
      assume xB: "x \<notin> B"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1028
      from xB BA have "B \<subseteq> A - {x}"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1029
        by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1030
      then have "span B \<subseteq> span (A - {x})"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1031
        by (metis span_mono)
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1032
      with th1 th0 sAB have "x \<notin> span A"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1033
        by blast
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1034
      with x show False
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1035
        by (metis span_superset)
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1036
    qed
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1037
  qed
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1038
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1039
63053
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1040
text \<open>Relation between bases and injectivity/surjectivity of map.\<close>
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1041
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1042
lemma spanning_surjective_image:
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1043
  assumes us: "UNIV \<subseteq> span S"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1044
    and lf: "linear f"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1045
    and sf: "surj f"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1046
  shows "UNIV \<subseteq> span (f ` S)"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1047
proof -
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1048
  have "UNIV \<subseteq> f ` UNIV"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1049
    using sf by (auto simp add: surj_def)
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1050
  also have " \<dots> \<subseteq> span (f ` S)"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1051
    using spans_image[OF lf us] .
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1052
  finally show ?thesis .
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1053
qed
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1054
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1055
lemma independent_inj_on_image:
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1056
  assumes iS: "independent S"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1057
    and lf: "linear f"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1058
    and fi: "inj_on f (span S)"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1059
  shows "independent (f ` S)"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1060
  unfolding dependent_def
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1061
proof clarsimp
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1062
  fix a
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1063
  assume a: "a \<in> S" "f a \<in> span (f ` S - {f a})"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1064
  have eq: "f ` S - {f a} = f ` (S - {a})"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1065
    using fi \<open>a\<in>S\<close> by (auto simp add: inj_on_def span_superset)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1066
  from a have "f a \<in> f ` span (S - {a})"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1067
    unfolding eq span_linear_image[OF lf, of "S - {a}"] by blast
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1068
  then have "a \<in> span (S - {a})"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1069
    by (rule inj_on_image_mem_iff_alt[OF fi, rotated])
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1070
      (insert span_mono[of "S - {a}" S], auto intro: span_superset \<open>a\<in>S\<close>)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1071
  with a(1) iS have False
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1072
    by (simp add: dependent_def)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1073
  then show False
63053
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1074
    unfolding dependent_def by blast
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1075
qed
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1076
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1077
lemma independent_injective_image:
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1078
  "independent S \<Longrightarrow> linear f \<Longrightarrow> inj f \<Longrightarrow> independent (f ` S)"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1079
  using independent_inj_on_image[of S f] by (auto simp: subset_inj_on)
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1080
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1081
text \<open>Detailed theorems about left and right invertibility in general case.\<close>
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1082
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1083
lemma linear_inj_on_left_inverse:
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1084
  assumes lf: "linear f" and fi: "inj_on f (span S)"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1085
  shows "\<exists>g. range g \<subseteq> span S \<and> linear g \<and> (\<forall>x\<in>span S. g (f x) = x)"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1086
proof -
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1087
  obtain B where "independent B" "B \<subseteq> S" "S \<subseteq> span B"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1088
    using maximal_independent_subset[of S] .
63053
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1089
  then have "span S = span B"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1090
    unfolding span_eq by (auto simp: span_superset)
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1091
  with linear_independent_extend_subspace[OF independent_inj_on_image, OF \<open>independent B\<close> lf] fi
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1092
  obtain g where g: "linear g" "\<forall>x\<in>f ` B. g x = inv_into B f x" "range g = span (inv_into B f ` f ` B)"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1093
    by fastforce
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1094
  have fB: "inj_on f B"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1095
    using fi by (auto simp: \<open>span S = span B\<close> intro: subset_inj_on span_superset)
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1096
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  1097
  have "g (f x) = x" if "x \<in> span B" for x
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  1098
  proof (rule linear_eq_span)
63053
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1099
    show "linear (\<lambda>x. x)" "linear (\<lambda>x. g (f x))"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1100
      using linear_id linear_compose[OF \<open>linear f\<close> \<open>linear g\<close>] by (auto simp: id_def comp_def)
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  1101
    show "g (f x) = x" if "x \<in> B" for x
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  1102
      using g fi \<open>span S = span B\<close>   by (simp add: fB that)
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  1103
  qed (rule that)
63053
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1104
  moreover
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1105
  have "inv_into B f ` f ` B \<subseteq> B"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1106
    by (auto simp: fB)
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1107
  then have "range g \<subseteq> span S"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1108
    unfolding g \<open>span S = span B\<close> by (intro span_mono)
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1109
  ultimately show ?thesis
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1110
    using \<open>span S = span B\<close> \<open>linear g\<close> by auto
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1111
qed
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1112
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1113
lemma linear_injective_left_inverse: "linear f \<Longrightarrow> inj f \<Longrightarrow> \<exists>g. linear g \<and> g \<circ> f = id"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1114
  using linear_inj_on_left_inverse[of f UNIV] by (auto simp: fun_eq_iff)
63053
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1115
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1116
lemma linear_surj_right_inverse:
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1117
  assumes lf: "linear f" and sf: "span T \<subseteq> f`span S"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1118
  shows "\<exists>g. range g \<subseteq> span S \<and> linear g \<and> (\<forall>x\<in>span T. f (g x) = x)"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1119
proof -
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1120
  obtain B where "independent B" "B \<subseteq> T" "T \<subseteq> span B"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1121
    using maximal_independent_subset[of T] .
63053
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1122
  then have "span T = span B"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1123
    unfolding span_eq by (auto simp: span_superset)
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1124
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1125
  from linear_independent_extend_subspace[OF \<open>independent B\<close>, of "inv_into (span S) f"]
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1126
  obtain g where g: "linear g" "\<forall>x\<in>B. g x = inv_into (span S) f x" "range g = span (inv_into (span S) f`B)"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1127
    by auto
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1128
  moreover have "x \<in> B \<Longrightarrow> f (inv_into (span S) f x) = x" for x
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1129
    using \<open>B \<subseteq> T\<close> \<open>span T \<subseteq> f`span S\<close> by (intro f_inv_into_f) (auto intro: span_superset)
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1130
  ultimately have "\<forall>x\<in>B. f (g x) = x"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1131
    by auto
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1132
  then have "\<forall>x\<in>span B. f (g x) = x"
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  1133
    using linear_id linear_compose[OF \<open>linear g\<close> \<open>linear f\<close>] linear_eq_span by fastforce
63053
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1134
  moreover have "inv_into (span S) f ` B \<subseteq> span S"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1135
    using \<open>B \<subseteq> T\<close> \<open>span T \<subseteq> f`span S\<close> by (auto intro: inv_into_into span_superset)
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1136
  then have "range g \<subseteq> span S"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1137
    unfolding g by (intro span_minimal subspace_span) auto
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1138
  ultimately show ?thesis
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1139
    using \<open>linear g\<close> \<open>span T = span B\<close> by auto
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1140
qed
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1141
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1142
lemma linear_surjective_right_inverse: "linear f \<Longrightarrow> surj f \<Longrightarrow> \<exists>g. linear g \<and> f \<circ> g = id"
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1143
  using linear_surj_right_inverse[of f UNIV UNIV]
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1144
  by (auto simp: fun_eq_iff)
63053
4a108f280dc2 Linear_Algebra: generalize linear_surjective_right/injective_left_inverse to real vector spaces
hoelzl
parents: 63052
diff changeset
  1145
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1146
text \<open>The general case of the Exchange Lemma, the key to what follows.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1147
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1148
lemma exchange_lemma:
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1149
  assumes f: "finite T"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1150
    and i: "independent S"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1151
    and sp: "S \<subseteq> span T"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1152
  shows "\<exists>t'. card t' = card T \<and> finite t' \<and> S \<subseteq> t' \<and> t' \<subseteq> S \<union> T \<and> S \<subseteq> span t'"
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  1153
  using f i sp
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1154
proof (induct "card (T - S)" arbitrary: S T rule: less_induct)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1155
  case less
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1156
  note ft = \<open>finite T\<close> and S = \<open>independent S\<close> and sp = \<open>S \<subseteq> span T\<close>
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1157
  let ?P = "\<lambda>t'. card t' = card T \<and> finite t' \<and> S \<subseteq> t' \<and> t' \<subseteq> S \<union> T \<and> S \<subseteq> span t'"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1158
  show ?case
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1159
  proof (cases "S \<subseteq> T \<or> T \<subseteq> S")
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1160
    case True
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1161
    then show ?thesis
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1162
    proof
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1163
      assume "S \<subseteq> T" then show ?thesis
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1164
        by (metis ft Un_commute sp sup_ge1)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1165
    next
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1166
      assume "T \<subseteq> S" then show ?thesis
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1167
        by (metis Un_absorb sp spanning_subset_independent[OF _ S sp] ft)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1168
    qed
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1169
  next
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1170
    case False
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1171
    then have st: "\<not> S \<subseteq> T" "\<not> T \<subseteq> S"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1172
      by auto
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1173
    from st(2) obtain b where b: "b \<in> T" "b \<notin> S"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1174
      by blast
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1175
    from b have "T - {b} - S \<subset> T - S"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1176
      by blast
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1177
    then have cardlt: "card (T - {b} - S) < card (T - S)"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1178
      using ft by (auto intro: psubset_card_mono)
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1179
    from b ft have ct0: "card T \<noteq> 0"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1180
      by auto
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1181
    show ?thesis
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1182
    proof (cases "S \<subseteq> span (T - {b})")
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1183
      case True
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1184
      from ft have ftb: "finite (T - {b})"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1185
        by auto
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1186
      from less(1)[OF cardlt ftb S True]
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1187
      obtain U where U: "card U = card (T - {b})" "S \<subseteq> U" "U \<subseteq> S \<union> (T - {b})" "S \<subseteq> span U"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1188
        and fu: "finite U" by blast
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1189
      let ?w = "insert b U"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1190
      have th0: "S \<subseteq> insert b U"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1191
        using U by blast
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1192
      have th1: "insert b U \<subseteq> S \<union> T"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1193
        using U b by blast
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1194
      have bu: "b \<notin> U"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1195
        using b U by blast
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1196
      from U(1) ft b have "card U = (card T - 1)"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1197
        by auto
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1198
      then have th2: "card (insert b U) = card T"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1199
        using card_insert_disjoint[OF fu bu] ct0 by auto
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1200
      from U(4) have "S \<subseteq> span U" .
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1201
      also have "\<dots> \<subseteq> span (insert b U)"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1202
        by (rule span_mono) blast
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1203
      finally have th3: "S \<subseteq> span (insert b U)" .
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1204
      from th0 th1 th2 th3 fu have th: "?P ?w"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1205
        by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1206
      from th show ?thesis by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1207
    next
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1208
      case False
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1209
      then obtain a where a: "a \<in> S" "a \<notin> span (T - {b})"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1210
        by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1211
      have ab: "a \<noteq> b"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1212
        using a b by blast
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1213
      have at: "a \<notin> T"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1214
        using a ab span_superset[of a "T- {b}"] by auto
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1215
      have mlt: "card ((insert a (T - {b})) - S) < card (T - S)"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1216
        using cardlt ft a b by auto
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1217
      have ft': "finite (insert a (T - {b}))"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1218
        using ft by auto
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1219
      have sp': "S \<subseteq> span (insert a (T - {b}))"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1220
      proof
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1221
        fix x
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1222
        assume xs: "x \<in> S"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1223
        have T: "T \<subseteq> insert b (insert a (T - {b}))"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1224
          using b by auto
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1225
        have bs: "b \<in> span (insert a (T - {b}))"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1226
          by (rule in_span_delete) (use a sp in auto)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1227
        from xs sp have "x \<in> span T"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1228
          by blast
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1229
        with span_mono[OF T] have x: "x \<in> span (insert b (insert a (T - {b})))" ..
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1230
        from span_trans[OF bs x] show "x \<in> span (insert a (T - {b}))" .
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1231
      qed
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1232
      from less(1)[OF mlt ft' S sp'] obtain U where U:
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1233
        "card U = card (insert a (T - {b}))"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1234
        "finite U" "S \<subseteq> U" "U \<subseteq> S \<union> insert a (T - {b})"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1235
        "S \<subseteq> span U" by blast
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1236
      from U a b ft at ct0 have "?P U"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1237
        by auto
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1238
      then show ?thesis by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1239
    qed
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1240
  qed
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1241
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1242
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1243
text \<open>This implies corresponding size bounds.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1244
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1245
lemma independent_span_bound:
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1246
  assumes f: "finite T"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1247
    and i: "independent S"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1248
    and sp: "S \<subseteq> span T"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1249
  shows "finite S \<and> card S \<le> card T"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1250
  by (metis exchange_lemma[OF f i sp] finite_subset card_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1251
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1252
lemma finite_Atleast_Atmost_nat[simp]: "finite {f x |x. x \<in> (UNIV::'a::finite set)}"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1253
  using finite finite_image_set by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1254
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1255
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
  1256
subsection%unimportant \<open>More interesting properties of the norm.\<close>
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1257
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1258
lemma cond_application_beta: "(if b then f else g) x = (if b then f x else g x)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1259
  by auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1260
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1261
notation inner (infix "\<bullet>" 70)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1262
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1263
lemma square_bound_lemma:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1264
  fixes x :: real
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1265
  shows "x < (1 + x) * (1 + x)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1266
proof -
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1267
  have "(x + 1/2)\<^sup>2 + 3/4 > 0"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1268
    using zero_le_power2[of "x+1/2"] by arith
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1269
  then show ?thesis
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1270
    by (simp add: field_simps power2_eq_square)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1271
qed
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1272
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1273
lemma square_continuous:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1274
  fixes e :: real
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1275
  shows "e > 0 \<Longrightarrow> \<exists>d. 0 < d \<and> (\<forall>y. \<bar>y - x\<bar> < d \<longrightarrow> \<bar>y * y - x * x\<bar> < e)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1276
  using isCont_power[OF continuous_ident, of x, unfolded isCont_def LIM_eq, rule_format, of e 2]
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1277
  by (force simp add: power2_eq_square)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1278
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1279
lemma norm_triangle_sub:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1280
  fixes x y :: "'a::real_normed_vector"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1281
  shows "norm x \<le> norm y + norm (x - y)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1282
  using norm_triangle_ineq[of "y" "x - y"] by (simp add: field_simps)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1283
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1284
lemma norm_le: "norm x \<le> norm y \<longleftrightarrow> x \<bullet> x \<le> y \<bullet> y"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1285
  by (simp add: norm_eq_sqrt_inner)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1286
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1287
lemma norm_lt: "norm x < norm y \<longleftrightarrow> x \<bullet> x < y \<bullet> y"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1288
  by (simp add: norm_eq_sqrt_inner)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1289
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1290
lemma norm_eq: "norm x = norm y \<longleftrightarrow> x \<bullet> x = y \<bullet> y"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1291
  apply (subst order_eq_iff)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1292
  apply (auto simp: norm_le)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1293
  done
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1294
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1295
lemma norm_eq_1: "norm x = 1 \<longleftrightarrow> x \<bullet> x = 1"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1296
  by (simp add: norm_eq_sqrt_inner)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1297
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1298
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66804
diff changeset
  1299
text\<open>Equality of vectors in terms of @{term "(\<bullet>)"} products.\<close>
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1300
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1301
lemma linear_componentwise:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1302
  fixes f:: "'a::euclidean_space \<Rightarrow> 'b::real_inner"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1303
  assumes lf: "linear f"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1304
  shows "(f x) \<bullet> j = (\<Sum>i\<in>Basis. (x\<bullet>i) * (f i\<bullet>j))" (is "?lhs = ?rhs")
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1305
proof -
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1306
  have "?rhs = (\<Sum>i\<in>Basis. (x\<bullet>i) *\<^sub>R (f i))\<bullet>j"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1307
    by (simp add: inner_sum_left)
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1308
  then show ?thesis
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1309
    unfolding linear_sum_mul[OF lf, symmetric]
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1310
    unfolding euclidean_representation ..
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1311
qed
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1312
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1313
lemma vector_eq: "x = y \<longleftrightarrow> x \<bullet> x = x \<bullet> y \<and> y \<bullet> y = x \<bullet> x"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1314
  (is "?lhs \<longleftrightarrow> ?rhs")
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1315
proof
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1316
  assume ?lhs
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1317
  then show ?rhs by simp
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1318
next
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1319
  assume ?rhs
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1320
  then have "x \<bullet> x - x \<bullet> y = 0 \<and> x \<bullet> y - y \<bullet> y = 0"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1321
    by simp
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1322
  then have "x \<bullet> (x - y) = 0 \<and> y \<bullet> (x - y) = 0"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1323
    by (simp add: inner_diff inner_commute)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1324
  then have "(x - y) \<bullet> (x - y) = 0"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1325
    by (simp add: field_simps inner_diff inner_commute)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1326
  then show "x = y" by simp
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1327
qed
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1328
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1329
lemma norm_triangle_half_r:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1330
  "norm (y - x1) < e / 2 \<Longrightarrow> norm (y - x2) < e / 2 \<Longrightarrow> norm (x1 - x2) < e"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1331
  using dist_triangle_half_r unfolding dist_norm[symmetric] by auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1332
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1333
lemma norm_triangle_half_l:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1334
  assumes "norm (x - y) < e / 2"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1335
    and "norm (x' - y) < e / 2"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1336
  shows "norm (x - x') < e"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1337
  using dist_triangle_half_l[OF assms[unfolded dist_norm[symmetric]]]
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1338
  unfolding dist_norm[symmetric] .
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1339
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1340
lemma norm_triangle_le: "norm x + norm y \<le> e \<Longrightarrow> norm (x + y) \<le> e"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1341
  by (rule norm_triangle_ineq [THEN order_trans])
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1342
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1343
lemma norm_triangle_lt: "norm x + norm y < e \<Longrightarrow> norm (x + y) < e"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1344
  by (rule norm_triangle_ineq [THEN le_less_trans])
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1345
66420
bc0dab0e7b40 further Hensock tidy-up
paulson <lp15@cam.ac.uk>
parents: 66297
diff changeset
  1346
lemma abs_triangle_half_r:
bc0dab0e7b40 further Hensock tidy-up
paulson <lp15@cam.ac.uk>
parents: 66297
diff changeset
  1347
  fixes y :: "'a::linordered_field"
bc0dab0e7b40 further Hensock tidy-up
paulson <lp15@cam.ac.uk>
parents: 66297
diff changeset
  1348
  shows "abs (y - x1) < e / 2 \<Longrightarrow> abs (y - x2) < e / 2 \<Longrightarrow> abs (x1 - x2) < e"
bc0dab0e7b40 further Hensock tidy-up
paulson <lp15@cam.ac.uk>
parents: 66297
diff changeset
  1349
  by linarith
bc0dab0e7b40 further Hensock tidy-up
paulson <lp15@cam.ac.uk>
parents: 66297
diff changeset
  1350
bc0dab0e7b40 further Hensock tidy-up
paulson <lp15@cam.ac.uk>
parents: 66297
diff changeset
  1351
lemma abs_triangle_half_l:
bc0dab0e7b40 further Hensock tidy-up
paulson <lp15@cam.ac.uk>
parents: 66297
diff changeset
  1352
  fixes y :: "'a::linordered_field"
bc0dab0e7b40 further Hensock tidy-up
paulson <lp15@cam.ac.uk>
parents: 66297
diff changeset
  1353
  assumes "abs (x - y) < e / 2"
bc0dab0e7b40 further Hensock tidy-up
paulson <lp15@cam.ac.uk>
parents: 66297
diff changeset
  1354
    and "abs (x' - y) < e / 2"
bc0dab0e7b40 further Hensock tidy-up
paulson <lp15@cam.ac.uk>
parents: 66297
diff changeset
  1355
  shows "abs (x - x') < e"
bc0dab0e7b40 further Hensock tidy-up
paulson <lp15@cam.ac.uk>
parents: 66297
diff changeset
  1356
  using assms by linarith
bc0dab0e7b40 further Hensock tidy-up
paulson <lp15@cam.ac.uk>
parents: 66297
diff changeset
  1357
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1358
lemma sum_clauses:
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1359
  shows "sum f {} = 0"
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1360
    and "finite S \<Longrightarrow> sum f (insert x S) = (if x \<in> S then sum f S else f x + sum f S)"
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1361
  by (auto simp add: insert_absorb)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1362
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1363
lemma sum_norm_bound:
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1364
  fixes f :: "'a \<Rightarrow> 'b::real_normed_vector"
64773
223b2ebdda79 Many new theorems, and more tidying
paulson <lp15@cam.ac.uk>
parents: 64267
diff changeset
  1365
  assumes K: "\<And>x. x \<in> S \<Longrightarrow> norm (f x) \<le> K"
223b2ebdda79 Many new theorems, and more tidying
paulson <lp15@cam.ac.uk>
parents: 64267
diff changeset
  1366
  shows "norm (sum f S) \<le> of_nat (card S)*K"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1367
  using sum_norm_le[OF K] sum_constant[symmetric]
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1368
  by simp
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1369
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1370
lemma sum_group:
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1371
  assumes fS: "finite S" and fT: "finite T" and fST: "f ` S \<subseteq> T"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1372
  shows "sum (\<lambda>y. sum g {x. x \<in> S \<and> f x = y}) T = sum g S"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1373
  unfolding sum_image_gen[OF fS, of g f]
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1374
  by (auto intro: sum.neutral sum.mono_neutral_right[OF fT fST])
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1375
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1376
lemma vector_eq_ldot: "(\<forall>x. x \<bullet> y = x \<bullet> z) \<longleftrightarrow> y = z"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1377
proof
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1378
  assume "\<forall>x. x \<bullet> y = x \<bullet> z"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1379
  then have "\<forall>x. x \<bullet> (y - z) = 0"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1380
    by (simp add: inner_diff)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1381
  then have "(y - z) \<bullet> (y - z) = 0" ..
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1382
  then show "y = z" by simp
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1383
qed simp
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1384
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1385
lemma vector_eq_rdot: "(\<forall>z. x \<bullet> z = y \<bullet> z) \<longleftrightarrow> x = y"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1386
proof
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1387
  assume "\<forall>z. x \<bullet> z = y \<bullet> z"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1388
  then have "\<forall>z. (x - y) \<bullet> z = 0"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1389
    by (simp add: inner_diff)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1390
  then have "(x - y) \<bullet> (x - y) = 0" ..
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1391
  then show "x = y" by simp
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1392
qed simp
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1393
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1394
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1395
subsection \<open>Orthogonality.\<close>
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1396
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
  1397
definition%important (in real_inner) "orthogonal x y \<longleftrightarrow> x \<bullet> y = 0"
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
  1398
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1399
context real_inner
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1400
begin
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1401
63072
eb5d493a9e03 renamings and refinements
paulson <lp15@cam.ac.uk>
parents: 63053
diff changeset
  1402
lemma orthogonal_self: "orthogonal x x \<longleftrightarrow> x = 0"
eb5d493a9e03 renamings and refinements
paulson <lp15@cam.ac.uk>
parents: 63053
diff changeset
  1403
  by (simp add: orthogonal_def)
eb5d493a9e03 renamings and refinements
paulson <lp15@cam.ac.uk>
parents: 63053
diff changeset
  1404
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1405
lemma orthogonal_clauses:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1406
  "orthogonal a 0"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1407
  "orthogonal a x \<Longrightarrow> orthogonal a (c *\<^sub>R x)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1408
  "orthogonal a x \<Longrightarrow> orthogonal a (- x)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1409
  "orthogonal a x \<Longrightarrow> orthogonal a y \<Longrightarrow> orthogonal a (x + y)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1410
  "orthogonal a x \<Longrightarrow> orthogonal a y \<Longrightarrow> orthogonal a (x - y)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1411
  "orthogonal 0 a"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1412
  "orthogonal x a \<Longrightarrow> orthogonal (c *\<^sub>R x) a"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1413
  "orthogonal x a \<Longrightarrow> orthogonal (- x) a"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1414
  "orthogonal x a \<Longrightarrow> orthogonal y a \<Longrightarrow> orthogonal (x + y) a"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1415
  "orthogonal x a \<Longrightarrow> orthogonal y a \<Longrightarrow> orthogonal (x - y) a"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1416
  unfolding orthogonal_def inner_add inner_diff by auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1417
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1418
end
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1419
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1420
lemma orthogonal_commute: "orthogonal x y \<longleftrightarrow> orthogonal y x"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1421
  by (simp add: orthogonal_def inner_commute)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1422
63114
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1423
lemma orthogonal_scaleR [simp]: "c \<noteq> 0 \<Longrightarrow> orthogonal (c *\<^sub>R x) = orthogonal x"
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1424
  by (rule ext) (simp add: orthogonal_def)
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1425
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1426
lemma pairwise_ortho_scaleR:
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1427
    "pairwise (\<lambda>i j. orthogonal (f i) (g j)) B
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1428
    \<Longrightarrow> pairwise (\<lambda>i j. orthogonal (a i *\<^sub>R f i) (a j *\<^sub>R g j)) B"
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1429
  by (auto simp: pairwise_def orthogonal_clauses)
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1430
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1431
lemma orthogonal_rvsum:
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1432
    "\<lbrakk>finite s; \<And>y. y \<in> s \<Longrightarrow> orthogonal x (f y)\<rbrakk> \<Longrightarrow> orthogonal x (sum f s)"
63114
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1433
  by (induction s rule: finite_induct) (auto simp: orthogonal_clauses)
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1434
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1435
lemma orthogonal_lvsum:
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1436
    "\<lbrakk>finite s; \<And>x. x \<in> s \<Longrightarrow> orthogonal (f x) y\<rbrakk> \<Longrightarrow> orthogonal (sum f s) y"
63114
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1437
  by (induction s rule: finite_induct) (auto simp: orthogonal_clauses)
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1438
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1439
lemma norm_add_Pythagorean:
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1440
  assumes "orthogonal a b"
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1441
    shows "norm(a + b) ^ 2 = norm a ^ 2 + norm b ^ 2"
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1442
proof -
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1443
  from assms have "(a - (0 - b)) \<bullet> (a - (0 - b)) = a \<bullet> a - (0 - b \<bullet> b)"
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1444
    by (simp add: algebra_simps orthogonal_def inner_commute)
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1445
  then show ?thesis
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1446
    by (simp add: power2_norm_eq_inner)
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1447
qed
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1448
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1449
lemma norm_sum_Pythagorean:
63114
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1450
  assumes "finite I" "pairwise (\<lambda>i j. orthogonal (f i) (f j)) I"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1451
    shows "(norm (sum f I))\<^sup>2 = (\<Sum>i\<in>I. (norm (f i))\<^sup>2)"
63114
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1452
using assms
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1453
proof (induction I rule: finite_induct)
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1454
  case empty then show ?case by simp
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1455
next
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1456
  case (insert x I)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1457
  then have "orthogonal (f x) (sum f I)"
63114
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1458
    by (metis pairwise_insert orthogonal_rvsum)
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1459
  with insert show ?case
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1460
    by (simp add: pairwise_insert norm_add_Pythagorean)
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1461
qed
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63075
diff changeset
  1462
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1463
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1464
subsection \<open>Bilinear functions.\<close>
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1465
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
  1466
definition%important "bilinear f \<longleftrightarrow> (\<forall>x. linear (\<lambda>y. f x y)) \<and> (\<forall>y. linear (\<lambda>x. f x y))"
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1467
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1468
lemma bilinear_ladd: "bilinear h \<Longrightarrow> h (x + y) z = h x z + h y z"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1469
  by (simp add: bilinear_def linear_iff)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1470
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1471
lemma bilinear_radd: "bilinear h \<Longrightarrow> h x (y + z) = h x y + h x z"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1472
  by (simp add: bilinear_def linear_iff)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1473
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1474
lemma bilinear_lmul: "bilinear h \<Longrightarrow> h (c *\<^sub>R x) y = c *\<^sub>R h x y"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1475
  by (simp add: bilinear_def linear_iff)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1476
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1477
lemma bilinear_rmul: "bilinear h \<Longrightarrow> h x (c *\<^sub>R y) = c *\<^sub>R h x y"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1478
  by (simp add: bilinear_def linear_iff)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1479
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1480
lemma bilinear_lneg: "bilinear h \<Longrightarrow> h (- x) y = - h x y"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1481
  by (drule bilinear_lmul [of _ "- 1"]) simp
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1482
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1483
lemma bilinear_rneg: "bilinear h \<Longrightarrow> h x (- y) = - h x y"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1484
  by (drule bilinear_rmul [of _ _ "- 1"]) simp
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1485
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1486
lemma (in ab_group_add) eq_add_iff: "x = x + y \<longleftrightarrow> y = 0"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1487
  using add_left_imp_eq[of x y 0] by auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1488
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1489
lemma bilinear_lzero:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1490
  assumes "bilinear h"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1491
  shows "h 0 x = 0"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1492
  using bilinear_ladd [OF assms, of 0 0 x] by (simp add: eq_add_iff field_simps)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1493
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1494
lemma bilinear_rzero:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1495
  assumes "bilinear h"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1496
  shows "h x 0 = 0"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1497
  using bilinear_radd [OF assms, of x 0 0 ] by (simp add: eq_add_iff field_simps)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1498
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1499
lemma bilinear_lsub: "bilinear h \<Longrightarrow> h (x - y) z = h x z - h y z"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1500
  using bilinear_ladd [of h x "- y"] by (simp add: bilinear_lneg)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1501
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1502
lemma bilinear_rsub: "bilinear h \<Longrightarrow> h z (x - y) = h z x - h z y"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1503
  using bilinear_radd [of h _ x "- y"] by (simp add: bilinear_rneg)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1504
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1505
lemma bilinear_sum:
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1506
  assumes bh: "bilinear h"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1507
    and fS: "finite S"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1508
    and fT: "finite T"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1509
  shows "h (sum f S) (sum g T) = sum (\<lambda>(i,j). h (f i) (g j)) (S \<times> T) "
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1510
proof -
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1511
  have "h (sum f S) (sum g T) = sum (\<lambda>x. h (f x) (sum g T)) S"
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1512
    apply (rule linear_sum[unfolded o_def])
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1513
    using bh fS
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1514
    apply (auto simp add: bilinear_def)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1515
    done
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1516
  also have "\<dots> = sum (\<lambda>x. sum (\<lambda>y. h (f x) (g y)) T) S"
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1517
    apply (rule sum.cong, simp)
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1518
    apply (rule linear_sum[unfolded o_def])
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1519
    using bh fT
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1520
    apply (auto simp add: bilinear_def)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1521
    done
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1522
  finally show ?thesis
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1523
    unfolding sum.cartesian_product .
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1524
qed
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1525
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1526
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1527
subsection \<open>Adjoints.\<close>
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1528
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
  1529
definition%important "adjoint f = (SOME f'. \<forall>x y. f x \<bullet> y = x \<bullet> f' y)"
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1530
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1531
lemma adjoint_unique:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1532
  assumes "\<forall>x y. inner (f x) y = inner x (g y)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1533
  shows "adjoint f = g"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1534
  unfolding adjoint_def
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1535
proof (rule some_equality)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1536
  show "\<forall>x y. inner (f x) y = inner x (g y)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1537
    by (rule assms)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1538
next
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1539
  fix h
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1540
  assume "\<forall>x y. inner (f x) y = inner x (h y)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1541
  then have "\<forall>x y. inner x (g y) = inner x (h y)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1542
    using assms by simp
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1543
  then have "\<forall>x y. inner x (g y - h y) = 0"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1544
    by (simp add: inner_diff_right)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1545
  then have "\<forall>y. inner (g y - h y) (g y - h y) = 0"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1546
    by simp
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1547
  then have "\<forall>y. h y = g y"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1548
    by simp
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1549
  then show "h = g" by (simp add: ext)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1550
qed
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1551
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1552
text \<open>TODO: The following lemmas about adjoints should hold for any
63680
6e1e8b5abbfa more symbols;
wenzelm
parents: 63627
diff changeset
  1553
  Hilbert space (i.e. complete inner product space).
6e1e8b5abbfa more symbols;
wenzelm
parents: 63627
diff changeset
  1554
  (see \<^url>\<open>http://en.wikipedia.org/wiki/Hermitian_adjoint\<close>)
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1555
\<close>
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1556
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1557
lemma adjoint_works:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1558
  fixes f :: "'n::euclidean_space \<Rightarrow> 'm::euclidean_space"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1559
  assumes lf: "linear f"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1560
  shows "x \<bullet> adjoint f y = f x \<bullet> y"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1561
proof -
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1562
  have "\<forall>y. \<exists>w. \<forall>x. f x \<bullet> y = x \<bullet> w"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1563
  proof (intro allI exI)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1564
    fix y :: "'m" and x
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1565
    let ?w = "(\<Sum>i\<in>Basis. (f i \<bullet> y) *\<^sub>R i) :: 'n"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1566
    have "f x \<bullet> y = f (\<Sum>i\<in>Basis. (x \<bullet> i) *\<^sub>R i) \<bullet> y"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1567
      by (simp add: euclidean_representation)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1568
    also have "\<dots> = (\<Sum>i\<in>Basis. (x \<bullet> i) *\<^sub>R f i) \<bullet> y"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1569
      unfolding linear_sum[OF lf]
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1570
      by (simp add: linear_cmul[OF lf])
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1571
    finally show "f x \<bullet> y = x \<bullet> ?w"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1572
      by (simp add: inner_sum_left inner_sum_right mult.commute)
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1573
  qed
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1574
  then show ?thesis
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1575
    unfolding adjoint_def choice_iff
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1576
    by (intro someI2_ex[where Q="\<lambda>f'. x \<bullet> f' y = f x \<bullet> y"]) auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1577
qed
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1578
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1579
lemma adjoint_clauses:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1580
  fixes f :: "'n::euclidean_space \<Rightarrow> 'm::euclidean_space"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1581
  assumes lf: "linear f"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1582
  shows "x \<bullet> adjoint f y = f x \<bullet> y"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1583
    and "adjoint f y \<bullet> x = y \<bullet> f x"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1584
  by (simp_all add: adjoint_works[OF lf] inner_commute)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1585
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1586
lemma adjoint_linear:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1587
  fixes f :: "'n::euclidean_space \<Rightarrow> 'm::euclidean_space"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1588
  assumes lf: "linear f"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1589
  shows "linear (adjoint f)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1590
  by (simp add: lf linear_iff euclidean_eq_iff[where 'a='n] euclidean_eq_iff[where 'a='m]
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1591
    adjoint_clauses[OF lf] inner_distrib)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1592
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1593
lemma adjoint_adjoint:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1594
  fixes f :: "'n::euclidean_space \<Rightarrow> 'm::euclidean_space"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1595
  assumes lf: "linear f"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1596
  shows "adjoint (adjoint f) = f"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1597
  by (rule adjoint_unique, simp add: adjoint_clauses [OF lf])
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1598
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1599
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
  1600
subsection%unimportant \<open>Interlude: Some properties of real sets\<close>
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1601
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1602
lemma seq_mono_lemma:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1603
  assumes "\<forall>(n::nat) \<ge> m. (d n :: real) < e n"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1604
    and "\<forall>n \<ge> m. e n \<le> e m"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1605
  shows "\<forall>n \<ge> m. d n < e m"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1606
  using assms by force
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1607
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1608
lemma infinite_enumerate:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1609
  assumes fS: "infinite S"
66447
a1f5c5c26fa6 Replaced subseq with strict_mono
eberlm <eberlm@in.tum.de>
parents: 66420
diff changeset
  1610
  shows "\<exists>r::nat\<Rightarrow>nat. strict_mono r \<and> (\<forall>n. r n \<in> S)"
a1f5c5c26fa6 Replaced subseq with strict_mono
eberlm <eberlm@in.tum.de>
parents: 66420
diff changeset
  1611
  unfolding strict_mono_def
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1612
  using enumerate_in_set[OF fS] enumerate_mono[of _ _ S] fS by auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1613
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1614
lemma approachable_lt_le: "(\<exists>(d::real) > 0. \<forall>x. f x < d \<longrightarrow> P x) \<longleftrightarrow> (\<exists>d>0. \<forall>x. f x \<le> d \<longrightarrow> P x)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1615
  apply auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1616
  apply (rule_tac x="d/2" in exI)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1617
  apply auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1618
  done
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1619
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 67399
diff changeset
  1620
lemma approachable_lt_le2:  \<comment> \<open>like the above, but pushes aside an extra formula\<close>
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1621
    "(\<exists>(d::real) > 0. \<forall>x. Q x \<longrightarrow> f x < d \<longrightarrow> P x) \<longleftrightarrow> (\<exists>d>0. \<forall>x. f x \<le> d \<longrightarrow> Q x \<longrightarrow> P x)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1622
  apply auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1623
  apply (rule_tac x="d/2" in exI, auto)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1624
  done
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1625
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1626
lemma triangle_lemma:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1627
  fixes x y z :: real
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1628
  assumes x: "0 \<le> x"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1629
    and y: "0 \<le> y"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1630
    and z: "0 \<le> z"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1631
    and xy: "x\<^sup>2 \<le> y\<^sup>2 + z\<^sup>2"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1632
  shows "x \<le> y + z"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1633
proof -
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1634
  have "y\<^sup>2 + z\<^sup>2 \<le> y\<^sup>2 + 2 * y * z + z\<^sup>2"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1635
    using z y by simp
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1636
  with xy have th: "x\<^sup>2 \<le> (y + z)\<^sup>2"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1637
    by (simp add: power2_eq_square field_simps)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1638
  from y z have yz: "y + z \<ge> 0"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1639
    by arith
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1640
  from power2_le_imp_le[OF th yz] show ?thesis .
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1641
qed
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1642
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1643
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1644
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1645
subsection \<open>Archimedean properties and useful consequences\<close>
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1646
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1647
text\<open>Bernoulli's inequality\<close>
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
  1648
proposition%important Bernoulli_inequality:
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1649
  fixes x :: real
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1650
  assumes "-1 \<le> x"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1651
    shows "1 + n * x \<le> (1 + x) ^ n"
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
  1652
proof%unimportant (induct n)
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1653
  case 0
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1654
  then show ?case by simp
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1655
next
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1656
  case (Suc n)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1657
  have "1 + Suc n * x \<le> 1 + (Suc n)*x + n * x^2"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1658
    by (simp add: algebra_simps)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1659
  also have "... = (1 + x) * (1 + n*x)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1660
    by (auto simp: power2_eq_square algebra_simps  of_nat_Suc)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1661
  also have "... \<le> (1 + x) ^ Suc n"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1662
    using Suc.hyps assms mult_left_mono by fastforce
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1663
  finally show ?case .
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1664
qed
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1665
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1666
corollary Bernoulli_inequality_even:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1667
  fixes x :: real
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1668
  assumes "even n"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1669
    shows "1 + n * x \<le> (1 + x) ^ n"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1670
proof (cases "-1 \<le> x \<or> n=0")
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1671
  case True
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1672
  then show ?thesis
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1673
    by (auto simp: Bernoulli_inequality)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1674
next
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1675
  case False
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1676
  then have "real n \<ge> 1"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1677
    by simp
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1678
  with False have "n * x \<le> -1"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1679
    by (metis linear minus_zero mult.commute mult.left_neutral mult_left_mono_neg neg_le_iff_le order_trans zero_le_one)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1680
  then have "1 + n * x \<le> 0"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1681
    by auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1682
  also have "... \<le> (1 + x) ^ n"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1683
    using assms
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1684
    using zero_le_even_power by blast
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1685
  finally show ?thesis .
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1686
qed
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1687
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1688
corollary real_arch_pow:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1689
  fixes x :: real
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1690
  assumes x: "1 < x"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1691
  shows "\<exists>n. y < x^n"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1692
proof -
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1693
  from x have x0: "x - 1 > 0"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1694
    by arith
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1695
  from reals_Archimedean3[OF x0, rule_format, of y]
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1696
  obtain n :: nat where n: "y < real n * (x - 1)" by metis
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1697
  from x0 have x00: "x- 1 \<ge> -1" by arith
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1698
  from Bernoulli_inequality[OF x00, of n] n
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1699
  have "y < x^n" by auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1700
  then show ?thesis by metis
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1701
qed
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1702
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1703
corollary real_arch_pow_inv:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1704
  fixes x y :: real
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1705
  assumes y: "y > 0"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1706
    and x1: "x < 1"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1707
  shows "\<exists>n. x^n < y"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1708
proof (cases "x > 0")
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1709
  case True
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1710
  with x1 have ix: "1 < 1/x" by (simp add: field_simps)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1711
  from real_arch_pow[OF ix, of "1/y"]
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1712
  obtain n where n: "1/y < (1/x)^n" by blast
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1713
  then show ?thesis using y \<open>x > 0\<close>
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1714
    by (auto simp add: field_simps)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1715
next
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1716
  case False
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1717
  with y x1 show ?thesis
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1718
    by (metis less_le_trans not_less power_one_right)
63050
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1719
qed
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1720
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1721
lemma forall_pos_mono:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1722
  "(\<And>d e::real. d < e \<Longrightarrow> P d \<Longrightarrow> P e) \<Longrightarrow>
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1723
    (\<And>n::nat. n \<noteq> 0 \<Longrightarrow> P (inverse (real n))) \<Longrightarrow> (\<And>e. 0 < e \<Longrightarrow> P e)"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1724
  by (metis real_arch_inverse)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1725
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1726
lemma forall_pos_mono_1:
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1727
  "(\<And>d e::real. d < e \<Longrightarrow> P d \<Longrightarrow> P e) \<Longrightarrow>
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1728
    (\<And>n. P (inverse (real (Suc n)))) \<Longrightarrow> 0 < e \<Longrightarrow> P e"
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1729
  apply (rule forall_pos_mono)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1730
  apply auto
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1731
  apply (metis Suc_pred of_nat_Suc)
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1732
  done
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1733
ca4cce24c75d Linear_Algebra: move abstract concepts to front
hoelzl
parents: 63007
diff changeset
  1734
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
  1735
subsection%unimportant \<open>Euclidean Spaces as Typeclass\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1736
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1737
lemma independent_Basis: "independent Basis"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1738
  unfolding dependent_def
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1739
  apply (subst span_finite)
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1740
  apply simp
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1741
  apply clarify
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1742
  apply (drule_tac f="inner a" in arg_cong)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1743
  apply (simp add: inner_Basis inner_sum_right eq_commute)
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1744
  done
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1745
53939
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1746
lemma span_Basis [simp]: "span Basis = UNIV"
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1747
  unfolding span_finite [OF finite_Basis]
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1748
  by (fast intro: euclidean_representation)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1749
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1750
lemma in_span_Basis: "x \<in> span Basis"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1751
  unfolding span_Basis ..
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1752
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1753
lemma Basis_le_norm: "b \<in> Basis \<Longrightarrow> \<bar>x \<bullet> b\<bar> \<le> norm x"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1754
  by (rule order_trans [OF Cauchy_Schwarz_ineq2]) simp
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1755
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1756
lemma norm_bound_Basis_le: "b \<in> Basis \<Longrightarrow> norm x \<le> e \<Longrightarrow> \<bar>x \<bullet> b\<bar> \<le> e"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1757
  by (metis Basis_le_norm order_trans)
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1758
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1759
lemma norm_bound_Basis_lt: "b \<in> Basis \<Longrightarrow> norm x < e \<Longrightarrow> \<bar>x \<bullet> b\<bar> < e"
53595
5078034ade16 prefer theorem name over 'long_thm_list(n)'
huffman
parents: 53406
diff changeset
  1760
  by (metis Basis_le_norm le_less_trans)
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1761
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1762
lemma norm_le_l1: "norm x \<le> (\<Sum>b\<in>Basis. \<bar>x \<bullet> b\<bar>)"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1763
  apply (subst euclidean_representation[of x, symmetric])
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1764
  apply (rule order_trans[OF norm_sum])
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1765
  apply (auto intro!: sum_mono)
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  1766
  done
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1767
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1768
lemma sum_norm_allsubsets_bound:
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  1769
  fixes f :: "'a \<Rightarrow> 'n::euclidean_space"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1770
  assumes fP: "finite P"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1771
    and fPs: "\<And>Q. Q \<subseteq> P \<Longrightarrow> norm (sum f Q) \<le> e"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1772
  shows "(\<Sum>x\<in>P. norm (f x)) \<le> 2 * real DIM('n) * e"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  1773
proof -
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1774
  have "(\<Sum>x\<in>P. norm (f x)) \<le> (\<Sum>x\<in>P. \<Sum>b\<in>Basis. \<bar>f x \<bullet> b\<bar>)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1775
    by (rule sum_mono) (rule norm_le_l1)
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1776
  also have "(\<Sum>x\<in>P. \<Sum>b\<in>Basis. \<bar>f x \<bullet> b\<bar>) = (\<Sum>b\<in>Basis. \<Sum>x\<in>P. \<bar>f x \<bullet> b\<bar>)"
66804
3f9bb52082c4 avoid name clashes on interpretation of abstract locales
haftmann
parents: 66641
diff changeset
  1777
    by (rule sum.swap)
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1778
  also have "\<dots> \<le> of_nat (card (Basis :: 'n set)) * (2 * e)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1779
  proof (rule sum_bounded_above)
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1780
    fix i :: 'n
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1781
    assume i: "i \<in> Basis"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1782
    have "norm (\<Sum>x\<in>P. \<bar>f x \<bullet> i\<bar>) \<le>
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1783
      norm ((\<Sum>x\<in>P \<inter> - {x. f x \<bullet> i < 0}. f x) \<bullet> i) + norm ((\<Sum>x\<in>P \<inter> {x. f x \<bullet> i < 0}. f x) \<bullet> i)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1784
      by (simp add: abs_real_def sum.If_cases[OF fP] sum_negf norm_triangle_ineq4 inner_sum_left
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  1785
        del: real_norm_def)
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1786
    also have "\<dots> \<le> e + e"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1787
      unfolding real_norm_def
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1788
      by (intro add_mono norm_bound_Basis_le i fPs) auto
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1789
    finally show "(\<Sum>x\<in>P. \<bar>f x \<bullet> i\<bar>) \<le> 2*e" by simp
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1790
  qed
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61520
diff changeset
  1791
  also have "\<dots> = 2 * real DIM('n) * e" by simp
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1792
  finally show ?thesis .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1793
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1794
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1795
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
  1796
subsection%unimportant \<open>Linearity and Bilinearity continued\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1797
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1798
lemma linear_bounded:
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  1799
  fixes f :: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1800
  assumes lf: "linear f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1801
  shows "\<exists>B. \<forall>x. norm (f x) \<le> B * norm x"
53939
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1802
proof
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1803
  let ?B = "\<Sum>b\<in>Basis. norm (f b)"
53939
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1804
  show "\<forall>x. norm (f x) \<le> ?B * norm x"
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1805
  proof
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1806
    fix x :: 'a
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1807
    let ?g = "\<lambda>b. (x \<bullet> b) *\<^sub>R f b"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1808
    have "norm (f x) = norm (f (\<Sum>b\<in>Basis. (x \<bullet> b) *\<^sub>R b))"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1809
      unfolding euclidean_representation ..
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1810
    also have "\<dots> = norm (sum ?g Basis)"
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1811
      by (simp add: linear_sum [OF lf] linear_cmul [OF lf])
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1812
    finally have th0: "norm (f x) = norm (sum ?g Basis)" .
64773
223b2ebdda79 Many new theorems, and more tidying
paulson <lp15@cam.ac.uk>
parents: 64267
diff changeset
  1813
    have th: "norm (?g i) \<le> norm (f i) * norm x" if "i \<in> Basis" for i
223b2ebdda79 Many new theorems, and more tidying
paulson <lp15@cam.ac.uk>
parents: 64267
diff changeset
  1814
    proof -
223b2ebdda79 Many new theorems, and more tidying
paulson <lp15@cam.ac.uk>
parents: 64267
diff changeset
  1815
      from Basis_le_norm[OF that, of x]
53939
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1816
      show "norm (?g i) \<le> norm (f i) * norm x"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1817
        unfolding norm_scaleR  by (metis mult.commute mult_left_mono norm_ge_zero)
53939
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1818
    qed
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1819
    from sum_norm_le[of _ ?g, OF th]
53939
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1820
    show "norm (f x) \<le> ?B * norm x"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1821
      unfolding th0 sum_distrib_right by metis
53939
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1822
  qed
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1823
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1824
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1825
lemma linear_conv_bounded_linear:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1826
  fixes f :: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1827
  shows "linear f \<longleftrightarrow> bounded_linear f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1828
proof
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1829
  assume "linear f"
53939
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1830
  then interpret f: linear f .
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1831
  show "bounded_linear f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1832
  proof
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1833
    have "\<exists>B. \<forall>x. norm (f x) \<le> B * norm x"
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1834
      using \<open>linear f\<close> by (rule linear_bounded)
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  1835
    then show "\<exists>K. \<forall>x. norm (f x) \<le> norm x * K"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
  1836
      by (simp add: mult.commute)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1837
  qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1838
next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1839
  assume "bounded_linear f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1840
  then interpret f: bounded_linear f .
53939
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1841
  show "linear f" ..
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1842
qed
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1843
61518
ff12606337e9 new lemmas about topology, etc., for Cauchy integral formula
paulson
parents: 61306
diff changeset
  1844
lemmas linear_linear = linear_conv_bounded_linear[symmetric]
ff12606337e9 new lemmas about topology, etc., for Cauchy integral formula
paulson
parents: 61306
diff changeset
  1845
53939
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1846
lemma linear_bounded_pos:
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  1847
  fixes f :: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector"
53939
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1848
  assumes lf: "linear f"
67982
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1849
 obtains B where "B > 0" "\<And>x. norm (f x) \<le> B * norm x"
53939
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1850
proof -
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1851
  have "\<exists>B > 0. \<forall>x. norm (f x) \<le> norm x * B"
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1852
    using lf unfolding linear_conv_bounded_linear
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1853
    by (rule bounded_linear.pos_bounded)
67982
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1854
  with that show ?thesis
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1855
    by (auto simp: mult.commute)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1856
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1857
67982
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1858
lemma linear_invertible_bounded_below_pos:
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1859
  fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::euclidean_space"
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1860
  assumes "linear f" "linear g" "g \<circ> f = id"
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1861
  obtains B where "B > 0" "\<And>x. B * norm x \<le> norm(f x)"
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1862
proof -
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1863
  obtain B where "B > 0" and B: "\<And>x. norm (g x) \<le> B * norm x"
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1864
    using linear_bounded_pos [OF \<open>linear g\<close>] by blast
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1865
  show thesis
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1866
  proof
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1867
    show "0 < 1/B"
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1868
      by (simp add: \<open>B > 0\<close>)
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1869
    show "1/B * norm x \<le> norm (f x)" for x
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1870
    proof -
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1871
      have "1/B * norm x = 1/B * norm (g (f x))"
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1872
        using assms by (simp add: pointfree_idE)
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1873
      also have "\<dots> \<le> norm (f x)"
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1874
        using B [of "f x"] by (simp add: \<open>B > 0\<close> mult.commute pos_divide_le_eq)
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1875
      finally show ?thesis .
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1876
    qed
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1877
  qed
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1878
qed
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1879
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1880
lemma linear_inj_bounded_below_pos:
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1881
  fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::euclidean_space"
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1882
  assumes "linear f" "inj f"
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1883
  obtains B where "B > 0" "\<And>x. B * norm x \<le> norm(f x)"
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1884
  using linear_injective_left_inverse [OF assms] linear_invertible_bounded_below_pos assms by blast
7643b005b29a various new results on measures, integrals, etc., and some simplified proofs
paulson <lp15@cam.ac.uk>
parents: 67962
diff changeset
  1885
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  1886
lemma bounded_linearI':
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  1887
  fixes f ::"'a::euclidean_space \<Rightarrow> 'b::real_normed_vector"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1888
  assumes "\<And>x y. f (x + y) = f x + f y"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1889
    and "\<And>c x. f (c *\<^sub>R x) = c *\<^sub>R f x"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  1890
  shows "bounded_linear f"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1891
  unfolding linear_conv_bounded_linear[symmetric]
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  1892
  by (rule linearI[OF assms])
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1893
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1894
lemma bilinear_bounded:
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  1895
  fixes h :: "'m::euclidean_space \<Rightarrow> 'n::euclidean_space \<Rightarrow> 'k::real_normed_vector"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1896
  assumes bh: "bilinear h"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1897
  shows "\<exists>B. \<forall>x y. norm (h x y) \<le> B * norm x * norm y"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1898
proof (clarify intro!: exI[of _ "\<Sum>i\<in>Basis. \<Sum>j\<in>Basis. norm (h i j)"])
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1899
  fix x :: 'm
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1900
  fix y :: 'n
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1901
  have "norm (h x y) = norm (h (sum (\<lambda>i. (x \<bullet> i) *\<^sub>R i) Basis) (sum (\<lambda>i. (y \<bullet> i) *\<^sub>R i) Basis))"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1902
    by (simp add: euclidean_representation)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1903
  also have "\<dots> = norm (sum (\<lambda> (i,j). h ((x \<bullet> i) *\<^sub>R i) ((y \<bullet> j) *\<^sub>R j)) (Basis \<times> Basis))"
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  1904
    unfolding bilinear_sum[OF bh finite_Basis finite_Basis] ..
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1905
  finally have th: "norm (h x y) = \<dots>" .
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1906
  have "\<And>i j. \<lbrakk>i \<in> Basis; j \<in> Basis\<rbrakk>
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1907
           \<Longrightarrow> \<bar>x \<bullet> i\<bar> * (\<bar>y \<bullet> j\<bar> * norm (h i j)) \<le> norm x * (norm y * norm (h i j))"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1908
    by (auto simp add: zero_le_mult_iff Basis_le_norm mult_mono)
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1909
  then show "norm (h x y) \<le> (\<Sum>i\<in>Basis. \<Sum>j\<in>Basis. norm (h i j)) * norm x * norm y"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1910
    unfolding sum_distrib_right th sum.cartesian_product
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1911
    by (clarsimp simp add: bilinear_rmul[OF bh] bilinear_lmul[OF bh]
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1912
      field_simps simp del: scaleR_scaleR intro!: sum_norm_le)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1913
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1914
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1915
lemma bilinear_conv_bounded_bilinear:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1916
  fixes h :: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space \<Rightarrow> 'c::real_normed_vector"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1917
  shows "bilinear h \<longleftrightarrow> bounded_bilinear h"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1918
proof
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1919
  assume "bilinear h"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1920
  show "bounded_bilinear h"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1921
  proof
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1922
    fix x y z
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1923
    show "h (x + y) z = h x z + h y z"
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1924
      using \<open>bilinear h\<close> unfolding bilinear_def linear_iff by simp
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1925
  next
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1926
    fix x y z
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  1927
    show "h x (y + z) = h x y + h x z"
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1928
      using \<open>bilinear h\<close> unfolding bilinear_def linear_iff by simp
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1929
  next
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1930
    show "h (scaleR r x) y = scaleR r (h x y)" "h x (scaleR r y) = scaleR r (h x y)" for r x y
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1931
      using \<open>bilinear h\<close> unfolding bilinear_def linear_iff
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  1932
      by simp_all
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1933
  next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1934
    have "\<exists>B. \<forall>x y. norm (h x y) \<le> B * norm x * norm y"
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1935
      using \<open>bilinear h\<close> by (rule bilinear_bounded)
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  1936
    then show "\<exists>K. \<forall>x y. norm (h x y) \<le> norm x * norm y * K"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1937
      by (simp add: ac_simps)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1938
  qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1939
next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1940
  assume "bounded_bilinear h"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1941
  then interpret h: bounded_bilinear h .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1942
  show "bilinear h"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1943
    unfolding bilinear_def linear_conv_bounded_linear
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  1944
    using h.bounded_linear_left h.bounded_linear_right by simp
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1945
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1946
53939
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1947
lemma bilinear_bounded_pos:
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  1948
  fixes h :: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space \<Rightarrow> 'c::real_normed_vector"
53939
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1949
  assumes bh: "bilinear h"
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1950
  shows "\<exists>B > 0. \<forall>x y. norm (h x y) \<le> B * norm x * norm y"
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1951
proof -
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1952
  have "\<exists>B > 0. \<forall>x y. norm (h x y) \<le> norm x * norm y * B"
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1953
    using bh [unfolded bilinear_conv_bounded_bilinear]
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1954
    by (rule bounded_bilinear.pos_bounded)
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1955
  then show ?thesis
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1956
    by (simp only: ac_simps)
53939
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1957
qed
eb25bddf6a22 tuned proofs
huffman
parents: 53938
diff changeset
  1958
63469
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  1959
lemma bounded_linear_imp_has_derivative:
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  1960
     "bounded_linear f \<Longrightarrow> (f has_derivative f) net"
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  1961
  by (simp add: has_derivative_def bounded_linear.linear linear_diff)
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  1962
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  1963
lemma linear_imp_has_derivative:
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  1964
  fixes f :: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector"
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  1965
  shows "linear f \<Longrightarrow> (f has_derivative f) net"
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  1966
by (simp add: has_derivative_def linear_conv_bounded_linear linear_diff)
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  1967
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  1968
lemma bounded_linear_imp_differentiable: "bounded_linear f \<Longrightarrow> f differentiable net"
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  1969
  using bounded_linear_imp_has_derivative differentiable_def by blast
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  1970
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  1971
lemma linear_imp_differentiable:
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  1972
  fixes f :: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector"
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  1973
  shows "linear f \<Longrightarrow> f differentiable net"
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  1974
by (metis linear_imp_has_derivative differentiable_def)
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  1975
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  1976
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
  1977
subsection%unimportant \<open>We continue.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1978
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1979
lemma independent_bound:
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  1980
  fixes S :: "'a::euclidean_space set"
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  1981
  shows "independent S \<Longrightarrow> finite S \<and> card S \<le> DIM('a)"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  1982
  using independent_span_bound[OF finite_Basis, of S] by auto
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1983
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61520
diff changeset
  1984
corollary
60303
00c06f1315d0 New material about paths, and some lemmas
paulson
parents: 60162
diff changeset
  1985
  fixes S :: "'a::euclidean_space set"
00c06f1315d0 New material about paths, and some lemmas
paulson
parents: 60162
diff changeset
  1986
  assumes "independent S"
00c06f1315d0 New material about paths, and some lemmas
paulson
parents: 60162
diff changeset
  1987
  shows independent_imp_finite: "finite S" and independent_card_le:"card S \<le> DIM('a)"
00c06f1315d0 New material about paths, and some lemmas
paulson
parents: 60162
diff changeset
  1988
using assms independent_bound by auto
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61520
diff changeset
  1989
63075
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
  1990
lemma independent_explicit:
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
  1991
  fixes B :: "'a::euclidean_space set"
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
  1992
  shows "independent B \<longleftrightarrow>
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
  1993
         finite B \<and> (\<forall>c. (\<Sum>v\<in>B. c v *\<^sub>R v) = 0 \<longrightarrow> (\<forall>v \<in> B. c v = 0))"
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
  1994
apply (cases "finite B")
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
  1995
 apply (force simp: dependent_finite)
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
  1996
using independent_bound
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
  1997
apply auto
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
  1998
done
60a42a4166af lemmas about dimension, hyperplanes, span, etc.
paulson <lp15@cam.ac.uk>
parents: 63072
diff changeset
  1999
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2000
lemma dependent_biggerset:
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  2001
  fixes S :: "'a::euclidean_space set"
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  2002
  shows "(finite S \<Longrightarrow> card S > DIM('a)) \<Longrightarrow> dependent S"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2003
  by (metis independent_bound not_less)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2004
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2005
text \<open>Notion of dimension.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2006
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2007
definition "dim V = (SOME n. \<exists>B. B \<subseteq> V \<and> independent B \<and> V \<subseteq> span B \<and> card B = n)"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2008
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2009
lemma basis_exists:
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  2010
  obtains B :: "'a::euclidean_space set"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  2011
  where "B \<subseteq> V" "independent B" "V \<subseteq> span B" "card B = dim V"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  2012
proof -
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  2013
  obtain B :: "'a set" where "B \<subseteq> V" "independent B" "V \<subseteq> span B"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  2014
    by (meson maximal_independent_subset[of V])
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  2015
  then show ?thesis
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  2016
    using that some_eq_ex[of "\<lambda>n. \<exists>B. B \<subseteq> V \<and> independent B \<and> V \<subseteq> span B \<and> (card B = n)"]
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  2017
    unfolding dim_def by blast
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  2018
qed
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  2019
  
60307
75e1aa7a450e Convex hulls: theorems about interior, etc. And a few simple lemmas.
paulson <lp15@cam.ac.uk>
parents: 60303
diff changeset
  2020
corollary dim_le_card:
75e1aa7a450e Convex hulls: theorems about interior, etc. And a few simple lemmas.
paulson <lp15@cam.ac.uk>
parents: 60303
diff changeset
  2021
  fixes s :: "'a::euclidean_space set"
75e1aa7a450e Convex hulls: theorems about interior, etc. And a few simple lemmas.
paulson <lp15@cam.ac.uk>
parents: 60303
diff changeset
  2022
  shows "finite s \<Longrightarrow> dim s \<le> card s"
75e1aa7a450e Convex hulls: theorems about interior, etc. And a few simple lemmas.
paulson <lp15@cam.ac.uk>
parents: 60303
diff changeset
  2023
by (metis basis_exists card_mono)
75e1aa7a450e Convex hulls: theorems about interior, etc. And a few simple lemmas.
paulson <lp15@cam.ac.uk>
parents: 60303
diff changeset
  2024
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2025
text \<open>Consequences of independence or spanning for cardinality.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2026
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2027
lemma independent_card_le_dim:
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2028
  fixes B :: "'a::euclidean_space set"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2029
  assumes "B \<subseteq> V"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2030
    and "independent B"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2031
  shows "card B \<le> dim V"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2032
proof -
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2033
  from basis_exists[of V] \<open>B \<subseteq> V\<close>
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  2034
  obtain B' where "independent B'" "B \<subseteq> span B'" "card B' = dim V"
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  2035
    by force
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2036
  with independent_span_bound[OF _ \<open>independent B\<close> \<open>B \<subseteq> span B'\<close>] independent_bound[of B']
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2037
  show ?thesis by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2038
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2039
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2040
lemma span_card_ge_dim:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2041
  fixes B :: "'a::euclidean_space set"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2042
  shows "B \<subseteq> V \<Longrightarrow> V \<subseteq> span B \<Longrightarrow> finite B \<Longrightarrow> dim V \<le> card B"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2043
  by (metis basis_exists[of V] independent_span_bound subset_trans)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2044
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2045
lemma basis_card_eq_dim:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2046
  fixes V :: "'a::euclidean_space set"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2047
  shows "B \<subseteq> V \<Longrightarrow> V \<subseteq> span B \<Longrightarrow> independent B \<Longrightarrow> finite B \<and> card B = dim V"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2048
  by (metis order_eq_iff independent_card_le_dim span_card_ge_dim independent_bound)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2049
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2050
lemma dim_unique:
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2051
  fixes B :: "'a::euclidean_space set"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2052
  shows "B \<subseteq> V \<Longrightarrow> V \<subseteq> span B \<Longrightarrow> independent B \<Longrightarrow> card B = n \<Longrightarrow> dim V = n"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2053
  by (metis basis_card_eq_dim)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2054
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2055
text \<open>More lemmas about dimension.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2056
64122
74fde524799e invariance of domain
paulson <lp15@cam.ac.uk>
parents: 63938
diff changeset
  2057
lemma dim_UNIV [simp]: "dim (UNIV :: 'a::euclidean_space set) = DIM('a)"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  2058
  using independent_Basis
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  2059
  by (intro dim_unique[of Basis]) auto
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2060
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2061
lemma dim_subset:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2062
  fixes S :: "'a::euclidean_space set"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2063
  shows "S \<subseteq> T \<Longrightarrow> dim S \<le> dim T"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2064
  using basis_exists[of T] basis_exists[of S]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2065
  by (metis independent_card_le_dim subset_trans)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2066
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2067
lemma dim_subset_UNIV:
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2068
  fixes S :: "'a::euclidean_space set"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2069
  shows "dim S \<le> DIM('a)"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2070
  by (metis dim_subset subset_UNIV dim_UNIV)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2071
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2072
text \<open>Converses to those.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2073
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2074
lemma card_ge_dim_independent:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2075
  fixes B :: "'a::euclidean_space set"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2076
  assumes BV: "B \<subseteq> V"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2077
    and iB: "independent B"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2078
    and dVB: "dim V \<le> card B"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2079
  shows "V \<subseteq> span B"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2080
proof
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2081
  fix a
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2082
  assume aV: "a \<in> V"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2083
  {
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2084
    assume aB: "a \<notin> span B"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2085
    then have iaB: "independent (insert a B)"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2086
      using iB aV BV by (simp add: independent_insert)
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2087
    from aV BV have th0: "insert a B \<subseteq> V"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2088
      by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2089
    from aB have "a \<notin>B"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2090
      by (auto simp add: span_superset)
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2091
    with independent_card_le_dim[OF th0 iaB] dVB independent_bound[OF iB]
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2092
    have False by auto
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2093
  }
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2094
  then show "a \<in> span B" by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2095
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2096
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2097
lemma card_le_dim_spanning:
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2098
  assumes BV: "(B:: ('a::euclidean_space) set) \<subseteq> V"
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2099
    and VB: "V \<subseteq> span B"
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2100
    and fB: "finite B"
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2101
    and dVB: "dim V \<ge> card B"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2102
  shows "independent B"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2103
proof -
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2104
  {
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2105
    fix a
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2106
    assume a: "a \<in> B" "a \<in> span (B - {a})"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2107
    from a fB have c0: "card B \<noteq> 0"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2108
      by auto
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2109
    from a fB have cb: "card (B - {a}) = card B - 1"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2110
      by auto
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2111
    from BV a have th0: "B - {a} \<subseteq> V"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2112
      by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2113
    {
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2114
      fix x
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2115
      assume x: "x \<in> V"
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2116
      from a have eq: "insert a (B - {a}) = B"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2117
        by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2118
      from x VB have x': "x \<in> span B"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2119
        by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2120
      from span_trans[OF a(2), unfolded eq, OF x']
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2121
      have "x \<in> span (B - {a})" .
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2122
    }
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2123
    then have th1: "V \<subseteq> span (B - {a})"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2124
      by blast
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2125
    have th2: "finite (B - {a})"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2126
      using fB by auto
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2127
    from span_card_ge_dim[OF th0 th1 th2]
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2128
    have c: "dim V \<le> card (B - {a})" .
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2129
    from c c0 dVB cb have False by simp
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2130
  }
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2131
  then show ?thesis
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2132
    unfolding dependent_def by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2133
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2134
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2135
lemma card_eq_dim:
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2136
  fixes B :: "'a::euclidean_space set"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2137
  shows "B \<subseteq> V \<Longrightarrow> card B = dim V \<Longrightarrow> finite B \<Longrightarrow> independent B \<longleftrightarrow> V \<subseteq> span B"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2138
  by (metis order_eq_iff card_le_dim_spanning card_ge_dim_independent)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2139
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2140
text \<open>More general size bound lemmas.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2141
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2142
lemma independent_bound_general:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2143
  fixes S :: "'a::euclidean_space set"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2144
  shows "independent S \<Longrightarrow> finite S \<and> card S \<le> dim S"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2145
  by (metis independent_card_le_dim independent_bound subset_refl)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2146
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2147
lemma dependent_biggerset_general:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2148
  fixes S :: "'a::euclidean_space set"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2149
  shows "(finite S \<Longrightarrow> card S > dim S) \<Longrightarrow> dependent S"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2150
  using independent_bound_general[of S] by (metis linorder_not_le)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2151
60303
00c06f1315d0 New material about paths, and some lemmas
paulson
parents: 60162
diff changeset
  2152
lemma dim_span [simp]:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2153
  fixes S :: "'a::euclidean_space set"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2154
  shows "dim (span S) = dim S"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2155
proof -
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2156
  have th0: "dim S \<le> dim (span S)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2157
    by (auto simp add: subset_eq intro: dim_subset span_superset)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2158
  from basis_exists[of S]
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2159
  obtain B where B: "B \<subseteq> S" "independent B" "S \<subseteq> span B" "card B = dim S"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2160
    by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2161
  from B have fB: "finite B" "card B = dim S"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2162
    using independent_bound by blast+
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2163
  have bSS: "B \<subseteq> span S"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2164
    using B(1) by (metis subset_eq span_inc)
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2165
  have sssB: "span S \<subseteq> span B"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2166
    using span_mono[OF B(3)] by (simp add: span_span)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2167
  from span_card_ge_dim[OF bSS sssB fB(1)] th0 show ?thesis
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2168
    using fB(2) by arith
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2169
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2170
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2171
lemma subset_le_dim:
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2172
  fixes S :: "'a::euclidean_space set"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2173
  shows "S \<subseteq> span T \<Longrightarrow> dim S \<le> dim T"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2174
  by (metis dim_span dim_subset)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2175
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2176
lemma span_eq_dim:
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  2177
  fixes S :: "'a::euclidean_space set"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2178
  shows "span S = span T \<Longrightarrow> dim S = dim T"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2179
  by (metis dim_span)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2180
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2181
lemma dim_image_le:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2182
  fixes f :: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space"
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2183
  assumes lf: "linear f"
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2184
  shows "dim (f ` S) \<le> dim (S)"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2185
proof -
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2186
  from basis_exists[of S] obtain B where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2187
    B: "B \<subseteq> S" "independent B" "S \<subseteq> span B" "card B = dim S" by blast
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2188
  from B have fB: "finite B" "card B = dim S"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2189
    using independent_bound by blast+
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2190
  have "dim (f ` S) \<le> card (f ` B)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2191
    apply (rule span_card_ge_dim)
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2192
    using lf B fB
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2193
    apply (auto simp add: span_linear_image spans_image subset_image_iff)
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2194
    done
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2195
  also have "\<dots> \<le> dim S"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2196
    using card_image_le[OF fB(1)] fB by simp
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2197
  finally show ?thesis .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2198
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2199
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2200
text \<open>Picking an orthogonal replacement for a spanning set.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2201
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2202
lemma vector_sub_project_orthogonal:
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2203
  fixes b x :: "'a::euclidean_space"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2204
  shows "b \<bullet> (x - ((b \<bullet> x) / (b \<bullet> b)) *\<^sub>R b) = 0"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2205
  unfolding inner_simps by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2206
44528
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  2207
lemma pairwise_orthogonal_insert:
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  2208
  assumes "pairwise orthogonal S"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2209
    and "\<And>y. y \<in> S \<Longrightarrow> orthogonal x y"
44528
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  2210
  shows "pairwise orthogonal (insert x S)"
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  2211
  using assms unfolding pairwise_def
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  2212
  by (auto simp add: orthogonal_commute)
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  2213
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2214
lemma basis_orthogonal:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2215
  fixes B :: "'a::real_inner set"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2216
  assumes fB: "finite B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2217
  shows "\<exists>C. finite C \<and> card C \<le> card B \<and> span C = span B \<and> pairwise orthogonal C"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2218
  (is " \<exists>C. ?P B C")
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2219
  using fB
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2220
proof (induct rule: finite_induct)
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2221
  case empty
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2222
  then show ?case
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2223
    apply (rule exI[where x="{}"])
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2224
    apply (auto simp add: pairwise_def)
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2225
    done
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2226
next
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2227
  case (insert a B)
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2228
  note fB = \<open>finite B\<close> and aB = \<open>a \<notin> B\<close>
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2229
  from \<open>\<exists>C. finite C \<and> card C \<le> card B \<and> span C = span B \<and> pairwise orthogonal C\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2230
  obtain C where C: "finite C" "card C \<le> card B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2231
    "span C = span B" "pairwise orthogonal C" by blast
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  2232
  let ?a = "a - sum (\<lambda>x. (x \<bullet> a / (x \<bullet> x)) *\<^sub>R x) C"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2233
  let ?C = "insert ?a C"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2234
  from C(1) have fC: "finite ?C"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2235
    by simp
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2236
  from fB aB C(1,2) have cC: "card ?C \<le> card (insert a B)"
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2237
    by (simp add: card_insert_if)
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2238
  {
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2239
    fix x k
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2240
    have th0: "\<And>(a::'a) b c. a - (b - c) = c + (a - b)"
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2241
      by (simp add: field_simps)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2242
    have "x - k *\<^sub>R (a - (\<Sum>x\<in>C. (x \<bullet> a / (x \<bullet> x)) *\<^sub>R x)) \<in> span C \<longleftrightarrow> x - k *\<^sub>R a \<in> span C"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2243
      apply (simp only: scaleR_right_diff_distrib th0)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2244
      apply (rule span_add_eq)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2245
      apply (rule span_mul)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  2246
      apply (rule span_sum)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2247
      apply (rule span_mul)
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2248
      apply (rule span_superset)
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2249
      apply assumption
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2250
      done
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2251
  }
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2252
  then have SC: "span ?C = span (insert a B)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2253
    unfolding set_eq_iff span_breakdown_eq C(3)[symmetric] by auto
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2254
  {
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2255
    fix y
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2256
    assume yC: "y \<in> C"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2257
    then have Cy: "C = insert y (C - {y})"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2258
      by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2259
    have fth: "finite (C - {y})"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2260
      using C by simp
44528
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  2261
    have "orthogonal ?a y"
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  2262
      unfolding orthogonal_def
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  2263
      unfolding inner_diff inner_sum_left right_minus_eq
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  2264
      unfolding sum.remove [OF \<open>finite C\<close> \<open>y \<in> C\<close>]
44528
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  2265
      apply (clarsimp simp add: inner_commute[of y a])
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  2266
      apply (rule sum.neutral)
44528
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  2267
      apply clarsimp
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  2268
      apply (rule C(4)[unfolded pairwise_def orthogonal_def, rule_format])
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2269
      using \<open>y \<in> C\<close> by auto
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2270
  }
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2271
  with \<open>pairwise orthogonal C\<close> have CPO: "pairwise orthogonal ?C"
44528
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  2272
    by (rule pairwise_orthogonal_insert)
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2273
  from fC cC SC CPO have "?P (insert a B) ?C"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2274
    by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2275
  then show ?case by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2276
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2277
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2278
lemma orthogonal_basis_exists:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2279
  fixes V :: "('a::euclidean_space) set"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2280
  shows "\<exists>B. independent B \<and> B \<subseteq> span V \<and> V \<subseteq> span B \<and> (card B = dim V) \<and> pairwise orthogonal B"
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2281
proof -
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2282
  from basis_exists[of V] obtain B where
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2283
    B: "B \<subseteq> V" "independent B" "V \<subseteq> span B" "card B = dim V"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2284
    by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2285
  from B have fB: "finite B" "card B = dim V"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2286
    using independent_bound by auto
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2287
  from basis_orthogonal[OF fB(1)] obtain C where
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2288
    C: "finite C" "card C \<le> card B" "span C = span B" "pairwise orthogonal C"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2289
    by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2290
  from C B have CSV: "C \<subseteq> span V"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2291
    by (metis span_inc span_mono subset_trans)
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2292
  from span_mono[OF B(3)] C have SVC: "span V \<subseteq> span C"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2293
    by (simp add: span_span)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2294
  from card_le_dim_spanning[OF CSV SVC C(1)] C(2,3) fB
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2295
  have iC: "independent C"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2296
    by (simp add: dim_span)
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2297
  from C fB have "card C \<le> dim V"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2298
    by simp
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2299
  moreover have "dim V \<le> card C"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2300
    using span_card_ge_dim[OF CSV SVC C(1)]
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2301
    by (simp add: dim_span)
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2302
  ultimately have CdV: "card C = dim V"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2303
    using C(1) by simp
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2304
  from C B CSV CdV iC show ?thesis
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2305
    by auto
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2306
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2307
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2308
text \<open>Low-dimensional subset is in a hyperplane (weak orthogonal complement).\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2309
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2310
lemma span_not_univ_orthogonal:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2311
  fixes S :: "'a::euclidean_space set"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2312
  assumes sU: "span S \<noteq> UNIV"
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  2313
  shows "\<exists>a::'a. a \<noteq> 0 \<and> (\<forall>x \<in> span S. a \<bullet> x = 0)"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2314
proof -
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2315
  from sU obtain a where a: "a \<notin> span S"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2316
    by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2317
  from orthogonal_basis_exists obtain B where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2318
    B: "independent B" "B \<subseteq> span S" "S \<subseteq> span B" "card B = dim S" "pairwise orthogonal B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2319
    by blast
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2320
  from B have fB: "finite B" "card B = dim S"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2321
    using independent_bound by auto
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2322
  from span_mono[OF B(2)] span_mono[OF B(3)]
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2323
  have sSB: "span S = span B"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2324
    by (simp add: span_span)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  2325
  let ?a = "a - sum (\<lambda>b. (a \<bullet> b / (b \<bullet> b)) *\<^sub>R b) B"
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  2326
  have "sum (\<lambda>b. (a \<bullet> b / (b \<bullet> b)) *\<^sub>R b) B \<in> span S"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2327
    unfolding sSB
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  2328
    apply (rule span_sum)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2329
    apply (rule span_mul)
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2330
    apply (rule span_superset)
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2331
    apply assumption
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2332
    done
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2333
  with a have a0:"?a  \<noteq> 0"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2334
    by auto
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2335
  have "?a \<bullet> x = 0" if "x\<in>span B" for x
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2336
  proof (rule span_induct [OF that])
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2337
    show "subspace {x. ?a \<bullet> x = 0}"
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2338
      by (auto simp add: subspace_def inner_add)
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2339
  next
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2340
    {
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2341
      fix x
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2342
      assume x: "x \<in> B"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2343
      from x have B': "B = insert x (B - {x})"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2344
        by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2345
      have fth: "finite (B - {x})"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2346
        using fB by simp
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2347
      have "?a \<bullet> x = 0"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2348
        apply (subst B')
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2349
        using fB fth
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  2350
        unfolding sum_clauses(2)[OF fth]
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2351
        apply simp unfolding inner_simps
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  2352
        apply (clarsimp simp add: inner_add inner_sum_left)
b9a1486e79be setsum -> sum
nipkow
parents: 64122
diff changeset
  2353
        apply (rule sum.neutral, rule ballI)
63170
eae6549dbea2 tuned proofs, to allow unfold_abs_def;
wenzelm
parents: 63148
diff changeset
  2354
        apply (simp only: inner_commute)
49711
e5aaae7eadc9 tuned proofs;
wenzelm
parents: 49663
diff changeset
  2355
        apply (auto simp add: x field_simps
e5aaae7eadc9 tuned proofs;
wenzelm
parents: 49663
diff changeset
  2356
          intro: B(5)[unfolded pairwise_def orthogonal_def, rule_format])
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2357
        done
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2358
    }
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2359
    then show "?a \<bullet> x = 0" if "x \<in> B" for x
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2360
      using that by blast
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2361
    qed
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2362
  with a0 show ?thesis
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2363
    unfolding sSB by (auto intro: exI[where x="?a"])
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2364
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2365
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2366
lemma span_not_univ_subset_hyperplane:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2367
  fixes S :: "'a::euclidean_space set"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2368
  assumes SU: "span S \<noteq> UNIV"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2369
  shows "\<exists> a. a \<noteq>0 \<and> span S \<subseteq> {x. a \<bullet> x = 0}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2370
  using span_not_univ_orthogonal[OF SU] by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2371
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2372
lemma lowdim_subset_hyperplane:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2373
  fixes S :: "'a::euclidean_space set"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2374
  assumes d: "dim S < DIM('a)"
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  2375
  shows "\<exists>a::'a. a \<noteq> 0 \<and> span S \<subseteq> {x. a \<bullet> x = 0}"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2376
proof -
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2377
  {
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2378
    assume "span S = UNIV"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2379
    then have "dim (span S) = dim (UNIV :: ('a) set)"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2380
      by simp
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2381
    then have "dim S = DIM('a)"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2382
      by (simp add: dim_span dim_UNIV)
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2383
    with d have False by arith
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2384
  }
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2385
  then have th: "span S \<noteq> UNIV"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2386
    by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2387
  from span_not_univ_subset_hyperplane[OF th] show ?thesis .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2388
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2389
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2390
text \<open>We can extend a linear basis-basis injection to the whole set.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2391
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2392
lemma linear_indep_image_lemma:
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2393
  assumes lf: "linear f"
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2394
    and fB: "finite B"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2395
    and ifB: "independent (f ` B)"
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2396
    and fi: "inj_on f B"
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2397
    and xsB: "x \<in> span B"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2398
    and fx: "f x = 0"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2399
  shows "x = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2400
  using fB ifB fi xsB fx
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2401
proof (induction B arbitrary: x rule: finite_induct)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2402
  case empty
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2403
  then show ?case by auto
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2404
next
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2405
  case (insert a b x)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2406
  have th0: "f ` b \<subseteq> f ` (insert a b)"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2407
    by (simp add: subset_insertI)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2408
  have ifb: "independent (f ` b)"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2409
    using independent_mono insert.prems(1) th0 by blast  
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2410
  have fib: "inj_on f b"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2411
    using insert.prems(2) by blast
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2412
  from span_breakdown[of a "insert a b", simplified, OF insert.prems(3)]
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2413
  obtain k where k: "x - k*\<^sub>R a \<in> span (b - {a})"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2414
    by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2415
  have "f (x - k*\<^sub>R a) \<in> span (f ` b)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2416
    unfolding span_linear_image[OF lf]
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2417
    using "insert.hyps"(2) k by auto
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2418
  then have "f x - k*\<^sub>R f a \<in> span (f ` b)"
63469
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  2419
    by (simp add: linear_diff[OF lf] linear_cmul[OF lf])
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2420
  then have th: "-k *\<^sub>R f a \<in> span (f ` b)"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2421
    using insert.prems(4) by simp
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2422
  have xsb: "x \<in> span b"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2423
  proof (cases "k = 0")
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2424
    case True
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2425
    with k have "x \<in> span (b - {a})" by simp
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2426
    then show ?thesis using span_mono[of "b - {a}" b]
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2427
      by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2428
  next
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2429
    case False
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2430
    from inj_on_image_set_diff[OF insert.prems(2), of "insert a b " "{a}", symmetric]
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2431
    have "f ` insert a b - f ` {a} = f ` (insert a b - {a})" by blast
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2432
    then have "f a \<notin> span (f ` b)" 
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2433
      using dependent_def insert.hyps(2) insert.prems(1) by fastforce
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2434
    moreover have "f a \<in> span (f ` b)"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2435
      using False span_mul[OF th, of "- 1/ k"] by auto
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2436
    ultimately have False
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2437
      by blast
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2438
    then show ?thesis by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2439
  qed
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2440
  show "x = 0" 
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2441
    using ifb fib xsb insert.IH insert.prems(4) by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2442
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2443
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2444
text \<open>Can construct an isomorphism between spaces of same dimension.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2445
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2446
lemma subspace_isomorphism:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2447
  fixes S :: "'a::euclidean_space set"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2448
    and T :: "'b::euclidean_space set"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2449
  assumes s: "subspace S"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2450
    and t: "subspace T"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2451
    and d: "dim S = dim T"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2452
  shows "\<exists>f. linear f \<and> f ` S = T \<and> inj_on f S"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2453
proof -
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2454
  from basis_exists[of S] independent_bound
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2455
  obtain B where B: "B \<subseteq> S" "independent B" "S \<subseteq> span B" "card B = dim S" and fB: "finite B"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  2456
    by metis
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2457
  from basis_exists[of T] independent_bound
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2458
  obtain C where C: "C \<subseteq> T" "independent C" "T \<subseteq> span C" "card C = dim T" and fC: "finite C"
68069
36209dfb981e tidying up and using real induction methods
paulson <lp15@cam.ac.uk>
parents: 68062
diff changeset
  2459
    by metis
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2460
  from B(4) C(4) card_le_inj[of B C] d
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2461
  obtain f where f: "f ` B \<subseteq> C" "inj_on f B" using \<open>finite B\<close> \<open>finite C\<close>
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2462
    by auto
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2463
  from linear_independent_extend[OF B(2)]
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2464
  obtain g where g: "linear g" "\<forall>x\<in> B. g x = f x"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2465
    by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2466
  from inj_on_iff_eq_card[OF fB, of f] f(2) have "card (f ` B) = card B"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2467
    by simp
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2468
  with B(4) C(4) have ceq: "card (f ` B) = card C"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2469
    using d by simp
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2470
  have "g ` B = f ` B"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2471
    using g(2) by (auto simp add: image_iff)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2472
  also have "\<dots> = C" using card_subset_eq[OF fC f(1) ceq] .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2473
  finally have gBC: "g ` B = C" .
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2474
  have gi: "inj_on g B"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2475
    using f(2) g(2) by (auto simp add: inj_on_def)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2476
  note g0 = linear_indep_image_lemma[OF g(1) fB, unfolded gBC, OF C(2) gi]
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2477
  {
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2478
    fix x y
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2479
    assume x: "x \<in> S" and y: "y \<in> S" and gxy: "g x = g y"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2480
    from B(3) x y have x': "x \<in> span B" and y': "y \<in> span B"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2481
      by blast+
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2482
    from gxy have th0: "g (x - y) = 0"
63469
b6900858dcb9 lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents: 63170
diff changeset
  2483
      by (simp add: linear_diff[OF g(1)])
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2484
    have th1: "x - y \<in> span B"
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63918
diff changeset
  2485
      using x' y' by (metis span_diff)
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2486
    have "x = y"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2487
      using g0[OF th1 th0] by simp
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2488
  }
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2489
  then have giS: "inj_on g S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2490
    unfolding inj_on_def by blast
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2491
  from span_subspace[OF B(1,3) s] have "g ` S = span (g ` B)"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2492
    by (simp add: span_linear_image[OF g(1)])
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2493
  also have "\<dots> = span C" unfolding gBC ..
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2494
  also have "\<dots> = T" using span_subspace[OF C(1,3) t] .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2495
  finally have gS: "g ` S = T" .
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2496
  from g(1) gS giS show ?thesis
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2497
    by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2498
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2499
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2500
lemma linear_eq_stdbasis:
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  2501
  fixes f :: "'a::euclidean_space \<Rightarrow> _"
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  2502
  assumes lf: "linear f"
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2503
    and lg: "linear g"
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2504
    and fg: "\<And>b. b \<in> Basis \<Longrightarrow> f b = g b"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2505
  shows "f = g"
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2506
  using linear_eq[OF _ lf lg, of _ _ Basis] fg by auto
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2507
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2508
text \<open>Similar results for bilinear functions.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2509
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2510
lemma bilinear_eq:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2511
  assumes bf: "bilinear f"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2512
    and bg: "bilinear g"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2513
    and SB: "S \<subseteq> span B"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2514
    and TC: "T \<subseteq> span C"
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2515
    and "x\<in>S" "y\<in>T"
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2516
    and fg: "\<And>x y. \<lbrakk>x \<in> B; y\<in> C\<rbrakk> \<Longrightarrow> f x y = g x y"
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2517
  shows "f x y = g x y"
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2518
proof -
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
  2519
  let ?P = "{x. \<forall>y\<in> span C. f x y = g x y}"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2520
  from bf bg have sp: "subspace ?P"
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53596
diff changeset
  2521
    unfolding bilinear_def linear_iff subspace_def bf bg
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2522
    by (auto simp add: bilinear_lzero[OF bf] bilinear_lzero[OF bg] span_add 
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2523
      intro: bilinear_ladd[OF bf])
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2524
  have sfg: "\<And>x. x \<in> B \<Longrightarrow> subspace {a. f x a = g x a}"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2525
    apply (auto simp add: subspace_def)
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53596
diff changeset
  2526
    using bf bg unfolding bilinear_def linear_iff
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2527
    apply (auto simp add: bilinear_rzero[OF bf] bilinear_rzero[OF bg] span_add 
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2528
      intro: bilinear_ladd[OF bf])
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2529
    done
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2530
  have "\<forall>y\<in> span C. f x y = g x y" if "x \<in> span B" for x
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2531
    apply (rule span_induct [OF that sp])
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2532
    using fg sfg span_induct by blast
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2533
  then show ?thesis
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2534
    using SB TC assms by auto
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2535
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2536
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2537
lemma bilinear_eq_stdbasis:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2538
  fixes f :: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space \<Rightarrow> _"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2539
  assumes bf: "bilinear f"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2540
    and bg: "bilinear g"
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2541
    and fg: "\<And>i j. i \<in> Basis \<Longrightarrow> j \<in> Basis \<Longrightarrow> f i j = g i j"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2542
  shows "f = g"
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2543
  using bilinear_eq[OF bf bg equalityD2[OF span_Basis] equalityD2[OF span_Basis]] fg
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2544
  by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2545
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2546
text \<open>An injective map @{typ "'a::euclidean_space \<Rightarrow> 'b::euclidean_space"} is also surjective.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2547
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2548
lemma linear_injective_imp_surjective:
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  2549
  fixes f :: "'a::euclidean_space \<Rightarrow> 'a::euclidean_space"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2550
  assumes lf: "linear f"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2551
    and fi: "inj f"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2552
  shows "surj f"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2553
proof -
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2554
  let ?U = "UNIV :: 'a set"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2555
  from basis_exists[of ?U] obtain B
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2556
    where B: "B \<subseteq> ?U" "independent B" "?U \<subseteq> span B" "card B = dim ?U"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2557
    by blast
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2558
  from B(4) have d: "dim ?U = card B"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2559
    by simp
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2560
  have th: "?U \<subseteq> span (f ` B)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2561
    apply (rule card_ge_dim_independent)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2562
    apply blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2563
    apply (rule independent_injective_image[OF B(2) lf fi])
68058
69715dfdc286 more general tidying up
paulson <lp15@cam.ac.uk>
parents: 67982
diff changeset
  2564
    by (metis card_image d fi inj_on_subset order_refl top_greatest)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2565
  from th show ?thesis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2566
    unfolding span_linear_image[OF lf] surj_def
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2567
    using B(3) by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2568
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2569
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2570
text \<open>And vice versa.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2571
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2572
lemma surjective_iff_injective_gen:
49663
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2573
  assumes fS: "finite S"
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2574
    and fT: "finite T"
b84fafaea4bb tuned proofs;
wenzelm
parents: 49652
diff changeset
  2575
    and c: "card S = card T"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2576
    and ST: "f ` S \<subseteq> T"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2577
  shows "(\<forall>y \<in> T. \<exists>x \<in> S. f x = y) \<longleftrightarrow> inj_on f S"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2578
  (is "?lhs \<longleftrightarrow> ?rhs")
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2579
proof
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2580
  assume h: "?lhs"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2581
  { fix x y
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2582
    assume x: "x \<in> S" and y: "y \<in> S" and f: "f x = f y"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2583
    from x fS have S0: "card S \<noteq> 0"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2584
      by auto
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2585
    have "x = y"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2586
    proof (rule ccontr)
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2587
      assume xy: "\<not> ?thesis"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2588
      have th: "card S \<le> card (f ` (S - {y}))"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2589
        unfolding c
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2590
      proof (rule card_mono)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2591
        show "finite (f ` (S - {y}))"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2592
          by (simp add: fS)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2593
        show "T \<subseteq> f ` (S - {y})"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2594
          using h xy x y f unfolding subset_eq image_iff
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2595
          by (metis member_remove remove_def)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2596
      qed
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2597
      also have " \<dots> \<le> card (S - {y})"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2598
        apply (rule card_image_le)
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2599
        using fS by simp
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2600
      also have "\<dots> \<le> card S - 1" using y fS by simp
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2601
      finally show False using S0 by arith
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2602
    qed
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2603
  }
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2604
  then show ?rhs
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2605
    unfolding inj_on_def by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2606
next
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2607
  assume h: ?rhs
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2608
  have "f ` S = T"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2609
    by (simp add: ST c card_image card_subset_eq fT h)
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2610
  then show ?lhs by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2611
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2612
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2613
lemma linear_surjective_imp_injective:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2614
  fixes f :: "'a::euclidean_space \<Rightarrow> 'a::euclidean_space"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2615
  assumes lf: "linear f" and sf: "surj f"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2616
  shows "inj f"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2617
proof -
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2618
  let ?U = "UNIV :: 'a set"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2619
  from basis_exists[of ?U] obtain B
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2620
    where B: "B \<subseteq> ?U" "independent B" "?U \<subseteq> span B" and d: "card B = dim ?U"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2621
    by blast
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2622
  {
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2623
    fix x
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2624
    assume x: "x \<in> span B" and fx: "f x = 0"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2625
    from B(2) have fB: "finite B"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2626
      using independent_bound by auto
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2627
    have Uspan: "UNIV \<subseteq> span (f ` B)"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2628
      by (simp add: B(3) lf sf spanning_surjective_image)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2629
    have fBi: "independent (f ` B)"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2630
    proof (rule card_le_dim_spanning)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2631
      show "card (f ` B) \<le> dim ?U"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2632
        using card_image_le d fB by fastforce
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2633
    qed (use fB Uspan in auto)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2634
    have th0: "dim ?U \<le> card (f ` B)"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2635
      by (rule span_card_ge_dim) (use Uspan fB in auto)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2636
    moreover have "card (f ` B) \<le> card B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2637
      by (rule card_image_le, rule fB)
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2638
    ultimately have th1: "card B = card (f ` B)"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2639
      unfolding d by arith
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2640
    have fiB: "inj_on f B"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2641
      by (simp add: eq_card_imp_inj_on fB th1)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2642
    from linear_indep_image_lemma[OF lf fB fBi fiB x] fx
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2643
    have "x = 0" by blast
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2644
  }
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2645
  then show ?thesis
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2646
    unfolding linear_injective_0[OF lf] using B(3) by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2647
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2648
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2649
text \<open>Hence either is enough for isomorphism.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2650
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2651
lemma left_right_inverse_eq:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2652
  assumes fg: "f \<circ> g = id"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2653
    and gh: "g \<circ> h = id"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2654
  shows "f = h"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2655
proof -
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2656
  have "f = f \<circ> (g \<circ> h)"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2657
    unfolding gh by simp
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2658
  also have "\<dots> = (f \<circ> g) \<circ> h"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2659
    by (simp add: o_assoc)
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2660
  finally show "f = h"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2661
    unfolding fg by simp
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2662
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2663
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2664
lemma isomorphism_expand:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2665
  "f \<circ> g = id \<and> g \<circ> f = id \<longleftrightarrow> (\<forall>x. f (g x) = x) \<and> (\<forall>x. g (f x) = x)"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2666
  by (simp add: fun_eq_iff o_def id_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2667
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2668
lemma linear_injective_isomorphism:
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  2669
  fixes f :: "'a::euclidean_space \<Rightarrow> 'a::euclidean_space"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2670
  assumes lf: "linear f"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2671
    and fi: "inj f"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2672
  shows "\<exists>f'. linear f' \<and> (\<forall>x. f' (f x) = x) \<and> (\<forall>x. f (f' x) = x)"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2673
  unfolding isomorphism_expand[symmetric]
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2674
  using linear_surjective_right_inverse[OF lf linear_injective_imp_surjective[OF lf fi]]
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2675
    linear_injective_left_inverse[OF lf fi]
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2676
  by (metis left_right_inverse_eq)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2677
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2678
lemma linear_surjective_isomorphism:
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2679
  fixes f :: "'a::euclidean_space \<Rightarrow> 'a::euclidean_space"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2680
  assumes lf: "linear f"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2681
    and sf: "surj f"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2682
  shows "\<exists>f'. linear f' \<and> (\<forall>x. f' (f x) = x) \<and> (\<forall>x. f (f' x) = x)"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2683
  unfolding isomorphism_expand[symmetric]
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2684
  using linear_surjective_right_inverse[OF lf sf]
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2685
    linear_injective_left_inverse[OF lf linear_surjective_imp_injective[OF lf sf]]
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2686
  by (metis left_right_inverse_eq)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2687
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2688
text \<open>Left and right inverses are the same for
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2689
  @{typ "'a::euclidean_space \<Rightarrow> 'a::euclidean_space"}.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2690
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2691
lemma linear_inverse_left:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2692
  fixes f :: "'a::euclidean_space \<Rightarrow> 'a::euclidean_space"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2693
  assumes lf: "linear f"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2694
    and lf': "linear f'"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2695
  shows "f \<circ> f' = id \<longleftrightarrow> f' \<circ> f = id"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2696
proof -
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2697
  {
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2698
    fix f f':: "'a \<Rightarrow> 'a"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2699
    assume lf: "linear f" "linear f'"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2700
    assume f: "f \<circ> f' = id"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2701
    from f have sf: "surj f"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2702
      by (auto simp add: o_def id_def surj_def) metis
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2703
    from linear_surjective_isomorphism[OF lf(1) sf] lf f
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2704
    have "f' \<circ> f = id"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2705
      unfolding fun_eq_iff o_def id_def by metis
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2706
  }
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2707
  then show ?thesis
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2708
    using lf lf' by metis
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2709
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2710
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2711
text \<open>Moreover, a one-sided inverse is automatically linear.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2712
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2713
lemma left_inverse_linear:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2714
  fixes f :: "'a::euclidean_space \<Rightarrow> 'a::euclidean_space"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2715
  assumes lf: "linear f"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2716
    and gf: "g \<circ> f = id"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2717
  shows "linear g"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2718
proof -
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2719
  from gf have fi: "inj f"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2720
    by (auto simp add: inj_on_def o_def id_def fun_eq_iff) metis
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2721
  from linear_injective_isomorphism[OF lf fi]
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2722
  obtain h :: "'a \<Rightarrow> 'a" where "linear h" and h: "\<forall>x. h (f x) = x" "\<forall>x. f (h x) = x"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2723
    by blast
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2724
  have "h = g"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2725
    by (metis gf h isomorphism_expand left_right_inverse_eq)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2726
  with \<open>linear h\<close> show ?thesis by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2727
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2728
60800
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  2729
lemma inj_linear_imp_inv_linear:
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  2730
  fixes f :: "'a::euclidean_space \<Rightarrow> 'a::euclidean_space"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  2731
  assumes "linear f" "inj f" shows "linear (inv f)"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  2732
using assms inj_iff left_inverse_linear by blast
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  2733
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2734
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2735
subsection \<open>Infinity norm\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2736
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
  2737
definition%important "infnorm (x::'a::euclidean_space) = Sup {\<bar>x \<bullet> b\<bar> |b. b \<in> Basis}"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2738
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2739
lemma infnorm_set_image:
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2740
  fixes x :: "'a::euclidean_space"
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  2741
  shows "{\<bar>x \<bullet> i\<bar> |i. i \<in> Basis} = (\<lambda>i. \<bar>x \<bullet> i\<bar>) ` Basis"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  2742
  by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2743
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2744
lemma infnorm_Max:
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2745
  fixes x :: "'a::euclidean_space"
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  2746
  shows "infnorm x = Max ((\<lambda>i. \<bar>x \<bullet> i\<bar>) ` Basis)"
62343
24106dc44def prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents: 61973
diff changeset
  2747
  by (simp add: infnorm_def infnorm_set_image cSup_eq_Max)
51475
ebf9d4fd00ba introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
hoelzl
parents: 50526
diff changeset
  2748
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2749
lemma infnorm_set_lemma:
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2750
  fixes x :: "'a::euclidean_space"
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  2751
  shows "finite {\<bar>x \<bullet> i\<bar> |i. i \<in> Basis}"
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  2752
    and "{\<bar>x \<bullet> i\<bar> |i. i \<in> Basis} \<noteq> {}"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2753
  unfolding infnorm_set_image
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2754
  by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2755
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2756
lemma infnorm_pos_le:
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2757
  fixes x :: "'a::euclidean_space"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2758
  shows "0 \<le> infnorm x"
51475
ebf9d4fd00ba introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
hoelzl
parents: 50526
diff changeset
  2759
  by (simp add: infnorm_Max Max_ge_iff ex_in_conv)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2760
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2761
lemma infnorm_triangle:
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2762
  fixes x :: "'a::euclidean_space"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2763
  shows "infnorm (x + y) \<le> infnorm x + infnorm y"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2764
proof -
51475
ebf9d4fd00ba introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
hoelzl
parents: 50526
diff changeset
  2765
  have *: "\<And>a b c d :: real. \<bar>a\<bar> \<le> c \<Longrightarrow> \<bar>b\<bar> \<le> d \<Longrightarrow> \<bar>a + b\<bar> \<le> c + d"
ebf9d4fd00ba introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
hoelzl
parents: 50526
diff changeset
  2766
    by simp
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2767
  show ?thesis
51475
ebf9d4fd00ba introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
hoelzl
parents: 50526
diff changeset
  2768
    by (auto simp: infnorm_Max inner_add_left intro!: *)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2769
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2770
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2771
lemma infnorm_eq_0:
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2772
  fixes x :: "'a::euclidean_space"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2773
  shows "infnorm x = 0 \<longleftrightarrow> x = 0"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2774
proof -
51475
ebf9d4fd00ba introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
hoelzl
parents: 50526
diff changeset
  2775
  have "infnorm x \<le> 0 \<longleftrightarrow> x = 0"
ebf9d4fd00ba introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
hoelzl
parents: 50526
diff changeset
  2776
    unfolding infnorm_Max by (simp add: euclidean_all_zero_iff)
ebf9d4fd00ba introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
hoelzl
parents: 50526
diff changeset
  2777
  then show ?thesis
ebf9d4fd00ba introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
hoelzl
parents: 50526
diff changeset
  2778
    using infnorm_pos_le[of x] by simp
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2779
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2780
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2781
lemma infnorm_0: "infnorm 0 = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2782
  by (simp add: infnorm_eq_0)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2783
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2784
lemma infnorm_neg: "infnorm (- x) = infnorm x"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2785
  unfolding infnorm_def by simp
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2786
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2787
lemma infnorm_sub: "infnorm (x - y) = infnorm (y - x)"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2788
  by (metis infnorm_neg minus_diff_eq)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2789
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2790
lemma absdiff_infnorm: "\<bar>infnorm x - infnorm y\<bar> \<le> infnorm (x - y)"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2791
proof -
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2792
  have *: "\<And>(nx::real) n ny. nx \<le> n + ny \<Longrightarrow> ny \<le> n + nx \<Longrightarrow> \<bar>nx - ny\<bar> \<le> n"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2793
    by arith
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2794
  show ?thesis
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2795
  proof (rule *)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2796
    from infnorm_triangle[of "x - y" " y"] infnorm_triangle[of "x - y" "-x"]
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2797
    show "infnorm x \<le> infnorm (x - y) + infnorm y" "infnorm y \<le> infnorm (x - y) + infnorm x"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2798
      by (simp_all add: field_simps infnorm_neg)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2799
  qed
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2800
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2801
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2802
lemma real_abs_infnorm: "\<bar>infnorm x\<bar> = infnorm x"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2803
  using infnorm_pos_le[of x] by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2804
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  2805
lemma Basis_le_infnorm:
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2806
  fixes x :: "'a::euclidean_space"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2807
  shows "b \<in> Basis \<Longrightarrow> \<bar>x \<bullet> b\<bar> \<le> infnorm x"
51475
ebf9d4fd00ba introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
hoelzl
parents: 50526
diff changeset
  2808
  by (simp add: infnorm_Max)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2809
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  2810
lemma infnorm_mul: "infnorm (a *\<^sub>R x) = \<bar>a\<bar> * infnorm x"
51475
ebf9d4fd00ba introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
hoelzl
parents: 50526
diff changeset
  2811
  unfolding infnorm_Max
ebf9d4fd00ba introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
hoelzl
parents: 50526
diff changeset
  2812
proof (safe intro!: Max_eqI)
ebf9d4fd00ba introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
hoelzl
parents: 50526
diff changeset
  2813
  let ?B = "(\<lambda>i. \<bar>x \<bullet> i\<bar>) ` Basis"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2814
  { fix b :: 'a
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2815
    assume "b \<in> Basis"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2816
    then show "\<bar>a *\<^sub>R x \<bullet> b\<bar> \<le> \<bar>a\<bar> * Max ?B"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2817
      by (simp add: abs_mult mult_left_mono)
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2818
  next
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2819
    from Max_in[of ?B] obtain b where "b \<in> Basis" "Max ?B = \<bar>x \<bullet> b\<bar>"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2820
      by (auto simp del: Max_in)
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2821
    then show "\<bar>a\<bar> * Max ((\<lambda>i. \<bar>x \<bullet> i\<bar>) ` Basis) \<in> (\<lambda>i. \<bar>a *\<^sub>R x \<bullet> i\<bar>) ` Basis"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2822
      by (intro image_eqI[where x=b]) (auto simp: abs_mult)
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2823
  }
51475
ebf9d4fd00ba introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
hoelzl
parents: 50526
diff changeset
  2824
qed simp
ebf9d4fd00ba introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
hoelzl
parents: 50526
diff changeset
  2825
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2826
lemma infnorm_mul_lemma: "infnorm (a *\<^sub>R x) \<le> \<bar>a\<bar> * infnorm x"
51475
ebf9d4fd00ba introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
hoelzl
parents: 50526
diff changeset
  2827
  unfolding infnorm_mul ..
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2828
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2829
lemma infnorm_pos_lt: "infnorm x > 0 \<longleftrightarrow> x \<noteq> 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2830
  using infnorm_pos_le[of x] infnorm_eq_0[of x] by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2831
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2832
text \<open>Prove that it differs only up to a bound from Euclidean norm.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2833
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2834
lemma infnorm_le_norm: "infnorm x \<le> norm x"
51475
ebf9d4fd00ba introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
hoelzl
parents: 50526
diff changeset
  2835
  by (simp add: Basis_le_norm infnorm_Max)
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 50105
diff changeset
  2836
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2837
lemma norm_le_infnorm:
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2838
  fixes x :: "'a::euclidean_space"
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2839
  shows "norm x \<le> sqrt DIM('a) * infnorm x"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2840
  unfolding norm_eq_sqrt_inner id_def 
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2841
proof (rule real_le_lsqrt[OF inner_ge_zero])
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2842
  show "sqrt DIM('a) * infnorm x \<ge> 0"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2843
    by (simp add: zero_le_mult_iff infnorm_pos_le)
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2844
  have "x \<bullet> x \<le> (\<Sum>b\<in>Basis. x \<bullet> b * (x \<bullet> b))"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2845
    by (metis euclidean_inner order_refl)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2846
  also have "... \<le> DIM('a) * \<bar>infnorm x\<bar>\<^sup>2"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2847
    by (rule sum_bounded_above) (metis Basis_le_infnorm abs_le_square_iff power2_eq_square real_abs_infnorm)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2848
  also have "... \<le> (sqrt DIM('a) * infnorm x)\<^sup>2"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2849
    by (simp add: power_mult_distrib)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2850
  finally show "x \<bullet> x \<le> (sqrt DIM('a) * infnorm x)\<^sup>2" .
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2851
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2852
44646
a6047ddd9377 add lemma tendsto_infnorm
huffman
parents: 44629
diff changeset
  2853
lemma tendsto_infnorm [tendsto_intros]:
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61915
diff changeset
  2854
  assumes "(f \<longlongrightarrow> a) F"
0c7e865fa7cb more symbols;
wenzelm
parents: 61915
diff changeset
  2855
  shows "((\<lambda>x. infnorm (f x)) \<longlongrightarrow> infnorm a) F"
44646
a6047ddd9377 add lemma tendsto_infnorm
huffman
parents: 44629
diff changeset
  2856
proof (rule tendsto_compose [OF LIM_I assms])
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2857
  fix r :: real
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2858
  assume "r > 0"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2859
  then show "\<exists>s>0. \<forall>x. x \<noteq> a \<and> norm (x - a) < s \<longrightarrow> norm (infnorm x - infnorm a) < r"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2860
    by (metis real_norm_def le_less_trans absdiff_infnorm infnorm_le_norm)
44646
a6047ddd9377 add lemma tendsto_infnorm
huffman
parents: 44629
diff changeset
  2861
qed
a6047ddd9377 add lemma tendsto_infnorm
huffman
parents: 44629
diff changeset
  2862
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2863
text \<open>Equality in Cauchy-Schwarz and triangle inequalities.\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2864
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2865
lemma norm_cauchy_schwarz_eq: "x \<bullet> y = norm x * norm y \<longleftrightarrow> norm x *\<^sub>R y = norm y *\<^sub>R x"
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2866
  (is "?lhs \<longleftrightarrow> ?rhs")
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2867
proof (cases "x=0")
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2868
  case True
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2869
  then show ?thesis 
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2870
    by auto
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2871
next
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2872
  case False
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2873
  from inner_eq_zero_iff[of "norm y *\<^sub>R x - norm x *\<^sub>R y"]
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2874
  have "?rhs \<longleftrightarrow>
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2875
      (norm y * (norm y * norm x * norm x - norm x * (x \<bullet> y)) -
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2876
        norm x * (norm y * (y \<bullet> x) - norm x * norm y * norm y) =  0)"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2877
    using False unfolding inner_simps
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2878
    by (auto simp add: power2_norm_eq_inner[symmetric] power2_eq_square inner_commute field_simps)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2879
  also have "\<dots> \<longleftrightarrow> (2 * norm x * norm y * (norm x * norm y - x \<bullet> y) = 0)" 
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2880
    using False  by (simp add: field_simps inner_commute)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2881
  also have "\<dots> \<longleftrightarrow> ?lhs" 
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2882
    using False by auto
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2883
  finally show ?thesis by metis
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2884
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2885
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2886
lemma norm_cauchy_schwarz_abs_eq:
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  2887
  "\<bar>x \<bullet> y\<bar> = norm x * norm y \<longleftrightarrow>
53716
b42d9a71fc1a tuned proofs;
wenzelm
parents: 53600
diff changeset
  2888
    norm x *\<^sub>R y = norm y *\<^sub>R x \<or> norm x *\<^sub>R y = - norm y *\<^sub>R x"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2889
  (is "?lhs \<longleftrightarrow> ?rhs")
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2890
proof -
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  2891
  have th: "\<And>(x::real) a. a \<ge> 0 \<Longrightarrow> \<bar>x\<bar> = a \<longleftrightarrow> x = a \<or> x = - a"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2892
    by arith
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2893
  have "?rhs \<longleftrightarrow> norm x *\<^sub>R y = norm y *\<^sub>R x \<or> norm (- x) *\<^sub>R y = norm y *\<^sub>R (- x)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2894
    by simp
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2895
  also have "\<dots> \<longleftrightarrow> (x \<bullet> y = norm x * norm y \<or> (- x) \<bullet> y = norm x * norm y)"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2896
    unfolding norm_cauchy_schwarz_eq[symmetric]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2897
    unfolding norm_minus_cancel norm_scaleR ..
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2898
  also have "\<dots> \<longleftrightarrow> ?lhs"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2899
    unfolding th[OF mult_nonneg_nonneg, OF norm_ge_zero[of x] norm_ge_zero[of y]] inner_simps
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2900
    by auto
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2901
  finally show ?thesis ..
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2902
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2903
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2904
lemma norm_triangle_eq:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2905
  fixes x y :: "'a::real_inner"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2906
  shows "norm (x + y) = norm x + norm y \<longleftrightarrow> norm x *\<^sub>R y = norm y *\<^sub>R x"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2907
proof (cases "x = 0 \<or> y = 0")
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2908
  case True
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2909
  then show ?thesis 
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2910
    by force
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2911
next
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2912
  case False
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2913
  then have n: "norm x > 0" "norm y > 0"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2914
    by auto
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2915
  have "norm (x + y) = norm x + norm y \<longleftrightarrow> (norm (x + y))\<^sup>2 = (norm x + norm y)\<^sup>2"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2916
    by simp
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2917
  also have "\<dots> \<longleftrightarrow> norm x *\<^sub>R y = norm y *\<^sub>R x"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2918
    unfolding norm_cauchy_schwarz_eq[symmetric]
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2919
    unfolding power2_norm_eq_inner inner_simps
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2920
    by (simp add: power2_norm_eq_inner[symmetric] power2_eq_square inner_commute field_simps)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2921
  finally show ?thesis .
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2922
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2923
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2924
60420
884f54e01427 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  2925
subsection \<open>Collinearity\<close>
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2926
67962
0acdcd8f4ba1 a first shot at tagging for HOL-Analysis manual
immler
parents: 67685
diff changeset
  2927
definition%important collinear :: "'a::real_vector set \<Rightarrow> bool"
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  2928
  where "collinear S \<longleftrightarrow> (\<exists>u. \<forall>x \<in> S. \<forall> y \<in> S. \<exists>c. x - y = c *\<^sub>R u)"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2929
66287
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2930
lemma collinear_alt:
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2931
     "collinear S \<longleftrightarrow> (\<exists>u v. \<forall>x \<in> S. \<exists>c. x = u + c *\<^sub>R v)" (is "?lhs = ?rhs")
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2932
proof
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2933
  assume ?lhs
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2934
  then show ?rhs
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2935
    unfolding collinear_def by (metis Groups.add_ac(2) diff_add_cancel)
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2936
next
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2937
  assume ?rhs
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2938
  then obtain u v where *: "\<And>x. x \<in> S \<Longrightarrow> \<exists>c. x = u + c *\<^sub>R v"
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2939
    by (auto simp: )
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2940
  have "\<exists>c. x - y = c *\<^sub>R v" if "x \<in> S" "y \<in> S" for x y
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2941
        by (metis *[OF \<open>x \<in> S\<close>] *[OF \<open>y \<in> S\<close>] scaleR_left.diff add_diff_cancel_left)
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2942
  then show ?lhs
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2943
    using collinear_def by blast
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2944
qed
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2945
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2946
lemma collinear:
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2947
  fixes S :: "'a::{perfect_space,real_vector} set"
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2948
  shows "collinear S \<longleftrightarrow> (\<exists>u. u \<noteq> 0 \<and> (\<forall>x \<in> S. \<forall> y \<in> S. \<exists>c. x - y = c *\<^sub>R u))"
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2949
proof -
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2950
  have "\<exists>v. v \<noteq> 0 \<and> (\<forall>x\<in>S. \<forall>y\<in>S. \<exists>c. x - y = c *\<^sub>R v)"
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2951
    if "\<forall>x\<in>S. \<forall>y\<in>S. \<exists>c. x - y = c *\<^sub>R u" "u=0" for u
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2952
  proof -
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2953
    have "\<forall>x\<in>S. \<forall>y\<in>S. x = y"
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2954
      using that by auto
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2955
    moreover
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2956
    obtain v::'a where "v \<noteq> 0"
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2957
      using UNIV_not_singleton [of 0] by auto
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2958
    ultimately have "\<forall>x\<in>S. \<forall>y\<in>S. \<exists>c. x - y = c *\<^sub>R v"
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2959
      by auto
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2960
    then show ?thesis
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2961
      using \<open>v \<noteq> 0\<close> by blast
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2962
  qed
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2963
  then show ?thesis
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2964
    apply (clarsimp simp: collinear_def)
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2965
    by (metis real_vector.scale_zero_right vector_fraction_eq_iff)
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2966
qed
005a30862ed0 new material: Colinearity, convex sets, polytopes
paulson <lp15@cam.ac.uk>
parents: 65680
diff changeset
  2967
63881
b746b19197bd lots of new results about topology, affine dimension etc
paulson <lp15@cam.ac.uk>
parents: 63680
diff changeset
  2968
lemma collinear_subset: "\<lbrakk>collinear T; S \<subseteq> T\<rbrakk> \<Longrightarrow> collinear S"
b746b19197bd lots of new results about topology, affine dimension etc
paulson <lp15@cam.ac.uk>
parents: 63680
diff changeset
  2969
  by (meson collinear_def subsetCE)
b746b19197bd lots of new results about topology, affine dimension etc
paulson <lp15@cam.ac.uk>
parents: 63680
diff changeset
  2970
60762
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60420
diff changeset
  2971
lemma collinear_empty [iff]: "collinear {}"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2972
  by (simp add: collinear_def)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2973
60762
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60420
diff changeset
  2974
lemma collinear_sing [iff]: "collinear {x}"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2975
  by (simp add: collinear_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2976
60762
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60420
diff changeset
  2977
lemma collinear_2 [iff]: "collinear {x, y}"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2978
  apply (simp add: collinear_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2979
  apply (rule exI[where x="x - y"])
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2980
  by (metis minus_diff_eq scaleR_left.minus scaleR_one)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2981
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  2982
lemma collinear_lemma: "collinear {0, x, y} \<longleftrightarrow> x = 0 \<or> y = 0 \<or> (\<exists>c. y = c *\<^sub>R x)"
53406
d4374a69ddff tuned proofs;
wenzelm
parents: 53077
diff changeset
  2983
  (is "?lhs \<longleftrightarrow> ?rhs")
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2984
proof (cases "x = 0 \<or> y = 0")
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2985
  case True
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2986
  then show ?thesis
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2987
    by (auto simp: insert_commute)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2988
next
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2989
  case False
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2990
  show ?thesis 
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2991
  proof
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2992
    assume h: "?lhs"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2993
    then obtain u where u: "\<forall> x\<in> {0,x,y}. \<forall>y\<in> {0,x,y}. \<exists>c. x - y = c *\<^sub>R u"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2994
      unfolding collinear_def by blast
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2995
    from u[rule_format, of x 0] u[rule_format, of y 0]
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2996
    obtain cx and cy where
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2997
      cx: "x = cx *\<^sub>R u" and cy: "y = cy *\<^sub>R u"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2998
      by auto
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  2999
    from cx cy False have cx0: "cx \<noteq> 0" and cy0: "cy \<noteq> 0" by auto
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3000
    let ?d = "cy / cx"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3001
    from cx cy cx0 have "y = ?d *\<^sub>R x"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3002
      by simp
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3003
    then show ?rhs using False by blast
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3004
  next
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3005
    assume h: "?rhs"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3006
    then obtain c where c: "y = c *\<^sub>R x"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3007
      using False by blast
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3008
    show ?lhs
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3009
      unfolding collinear_def c
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3010
      apply (rule exI[where x=x])
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3011
      apply auto
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3012
          apply (rule exI[where x="- 1"], simp)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3013
         apply (rule exI[where x= "-c"], simp)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  3014
        apply (rule exI[where x=1], simp)
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3015
       apply (rule exI[where x="1 - c"], simp add: scaleR_left_diff_distrib)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3016
      apply (rule exI[where x="c - 1"], simp add: scaleR_left_diff_distrib)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3017
      done
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3018
  qed
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  3019
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  3020
56444
f944ae8c80a3 tuned proofs;
wenzelm
parents: 56409
diff changeset
  3021
lemma norm_cauchy_schwarz_equal: "\<bar>x \<bullet> y\<bar> = norm x * norm y \<longleftrightarrow> collinear {0, x, y}"
68062
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3022
proof (cases "x=0")
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3023
  case True
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3024
  then show ?thesis
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3025
    by (auto simp: insert_commute)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3026
next
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3027
  case False
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3028
  then have nnz: "norm x \<noteq> 0"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3029
    by auto
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3030
  show ?thesis
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3031
  proof
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3032
    assume "\<bar>x \<bullet> y\<bar> = norm x * norm y"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3033
    then show "collinear {0, x, y}"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3034
      unfolding norm_cauchy_schwarz_abs_eq collinear_lemma 
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3035
      by (meson eq_vector_fraction_iff nnz)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3036
  next
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3037
    assume "collinear {0, x, y}"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3038
    with False show "\<bar>x \<bullet> y\<bar> = norm x * norm y"
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3039
      unfolding norm_cauchy_schwarz_abs_eq collinear_lemma  by (auto simp: abs_if)
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3040
  qed
ee88c0fccbae simplified some messy proofs
paulson <lp15@cam.ac.uk>
parents: 68058
diff changeset
  3041
qed
49522
355f3d076924 tuned proofs;
wenzelm
parents: 44890
diff changeset
  3042
54776
db890d9fc5c2 ordered_euclidean_space compatible with more standard pointwise ordering on products; conditionally complete lattice with product order
immler
parents: 54703
diff changeset
  3043
end