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