src/HOL/Multivariate_Analysis/Linear_Algebra.thy
author huffman
Wed, 31 Aug 2011 13:51:22 -0700
changeset 44629 1cd782f3458b
parent 44529 d4d9ea33703c
child 44646 a6047ddd9377
permissions -rw-r--r--
remove redundant lemma card_enum
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
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
     5
header {* Elementary linear algebra on Euclidean spaces *}
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
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    18
lemma square_bound_lemma: "(x::real) < (1 + x) * (1 + x)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    19
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    20
  have "(x + 1/2)^2 + 3/4 > 0" using zero_le_power2[of "x+1/2"] by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    21
  thus ?thesis by (simp add: field_simps power2_eq_square)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    22
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    23
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    24
lemma square_continuous: "0 < (e::real) ==> \<exists>d. 0 < d \<and> (\<forall>y. abs(y - x) < d \<longrightarrow> abs(y * y - x * x) < e)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    25
  using isCont_power[OF isCont_ident, of 2, unfolded isCont_def LIM_eq, rule_format, of e x] apply (auto simp add: power2_eq_square)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    26
  apply (rule_tac x="s" in exI)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    27
  apply auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    28
  apply (erule_tac x=y in allE)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    29
  apply auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    30
  done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    31
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    32
lemma real_le_lsqrt: "0 <= x \<Longrightarrow> 0 <= y \<Longrightarrow> x <= y^2 ==> sqrt x <= y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    33
  using real_sqrt_le_iff[of x "y^2"] by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    34
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    35
lemma real_le_rsqrt: "x^2 \<le> y \<Longrightarrow> x \<le> sqrt y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    36
  using real_sqrt_le_mono[of "x^2" y] by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    37
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    38
lemma real_less_rsqrt: "x^2 < y \<Longrightarrow> x < sqrt y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    39
  using real_sqrt_less_mono[of "x^2" y] by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    40
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    41
lemma sqrt_even_pow2: assumes n: "even n"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    42
  shows "sqrt(2 ^ n) = 2 ^ (n div 2)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    43
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    44
  from n obtain m where m: "n = 2*m" unfolding even_mult_two_ex ..
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    45
  from m  have "sqrt(2 ^ n) = sqrt ((2 ^ m) ^ 2)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    46
    by (simp only: power_mult[symmetric] mult_commute)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    47
  then show ?thesis  using m by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    48
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    49
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    50
lemma real_div_sqrt: "0 <= x ==> x / sqrt(x) = sqrt(x)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    51
  apply (cases "x = 0", simp_all)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    52
  using sqrt_divide_self_eq[of x]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    53
  apply (simp add: inverse_eq_divide field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    54
  done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    55
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    56
text{* Hence derive more interesting properties of the norm. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    57
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    58
(* FIXME: same as norm_scaleR
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    59
lemma norm_mul[simp]: "norm(a *\<^sub>R x) = abs(a) * norm x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    60
  by (simp add: norm_vector_def setL2_right_distrib abs_mult)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    61
*)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    62
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    63
lemma norm_eq_0_dot: "(norm x = 0) \<longleftrightarrow> (inner x x = (0::real))"
44517
68e8eb0ce8aa minimize imports
huffman
parents: 44516
diff changeset
    64
  by (simp add: power2_eq_square)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    65
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    66
lemma norm_cauchy_schwarz:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    67
  shows "inner x y <= norm x * norm y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    68
  using Cauchy_Schwarz_ineq2[of x y] by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    69
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    70
lemma norm_cauchy_schwarz_abs:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    71
  shows "\<bar>inner x y\<bar> \<le> norm x * norm y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    72
  by (rule Cauchy_Schwarz_ineq2)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    73
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    74
lemma norm_triangle_sub:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    75
  fixes x y :: "'a::real_normed_vector"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    76
  shows "norm x \<le> norm y  + norm (x - y)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    77
  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
    78
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    79
lemma real_abs_norm: "\<bar>norm x\<bar> = norm x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    80
  by (rule abs_norm_cancel)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    81
lemma real_abs_sub_norm: "\<bar>norm x - norm y\<bar> <= norm(x - y)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    82
  by (rule norm_triangle_ineq3)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    83
lemma norm_le: "norm(x) <= norm(y) \<longleftrightarrow> x \<bullet> x <= y \<bullet> y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    84
  by (simp add: norm_eq_sqrt_inner) 
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    85
lemma norm_lt: "norm(x) < norm(y) \<longleftrightarrow> x \<bullet> x < y \<bullet> y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    86
  by (simp add: norm_eq_sqrt_inner)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    87
lemma norm_eq: "norm(x) = norm (y) \<longleftrightarrow> x \<bullet> x = y \<bullet> y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    88
  apply(subst order_eq_iff) unfolding norm_le by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    89
lemma norm_eq_1: "norm(x) = 1 \<longleftrightarrow> x \<bullet> x = 1"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    90
  unfolding norm_eq_sqrt_inner by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    91
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    92
text{* Squaring equations and inequalities involving norms.  *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    93
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    94
lemma dot_square_norm: "x \<bullet> x = norm(x)^2"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    95
  by (simp add: norm_eq_sqrt_inner)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    96
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    97
lemma norm_eq_square: "norm(x) = a \<longleftrightarrow> 0 <= a \<and> x \<bullet> x = a^2"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    98
  by (auto simp add: norm_eq_sqrt_inner)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
    99
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   100
lemma real_abs_le_square_iff: "\<bar>x\<bar> \<le> \<bar>y\<bar> \<longleftrightarrow> (x::real)^2 \<le> y^2"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   101
proof
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   102
  assume "\<bar>x\<bar> \<le> \<bar>y\<bar>"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   103
  then have "\<bar>x\<bar>\<twosuperior> \<le> \<bar>y\<bar>\<twosuperior>" by (rule power_mono, simp)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   104
  then show "x\<twosuperior> \<le> y\<twosuperior>" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   105
next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   106
  assume "x\<twosuperior> \<le> y\<twosuperior>"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   107
  then have "sqrt (x\<twosuperior>) \<le> sqrt (y\<twosuperior>)" by (rule real_sqrt_le_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   108
  then show "\<bar>x\<bar> \<le> \<bar>y\<bar>" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   109
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   110
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   111
lemma norm_le_square: "norm(x) <= a \<longleftrightarrow> 0 <= a \<and> x \<bullet> x <= a^2"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   112
  apply (simp add: dot_square_norm real_abs_le_square_iff[symmetric])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   113
  using norm_ge_zero[of x]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   114
  apply arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   115
  done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   116
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   117
lemma norm_ge_square: "norm(x) >= a \<longleftrightarrow> a <= 0 \<or> x \<bullet> x >= a ^ 2"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   118
  apply (simp add: dot_square_norm real_abs_le_square_iff[symmetric])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   119
  using norm_ge_zero[of x]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   120
  apply arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   121
  done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   122
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   123
lemma norm_lt_square: "norm(x) < a \<longleftrightarrow> 0 < a \<and> x \<bullet> x < a^2"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   124
  by (metis not_le norm_ge_square)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   125
lemma norm_gt_square: "norm(x) > a \<longleftrightarrow> a < 0 \<or> x \<bullet> x > a^2"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   126
  by (metis norm_le_square not_less)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   127
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   128
text{* Dot product in terms of the norm rather than conversely. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   129
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44176
diff changeset
   130
lemmas inner_simps = inner_add_left inner_add_right inner_diff_right inner_diff_left 
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44176
diff changeset
   131
inner_scaleR_left inner_scaleR_right
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   132
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   133
lemma dot_norm: "x \<bullet> y = (norm(x + y) ^2 - norm x ^ 2 - norm y ^ 2) / 2"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   134
  unfolding power2_norm_eq_inner inner_simps inner_commute by auto 
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 dot_norm_neg: "x \<bullet> y = ((norm x ^ 2 + norm y ^ 2) - norm(x - y) ^ 2) / 2"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   137
  unfolding power2_norm_eq_inner inner_simps inner_commute by(auto simp add:algebra_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   138
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   139
text{* Equality of vectors in terms of @{term "op \<bullet>"} products.    *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   140
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   141
lemma vector_eq: "x = y \<longleftrightarrow> x \<bullet> x = x \<bullet> y \<and> y \<bullet> y = x \<bullet> x" (is "?lhs \<longleftrightarrow> ?rhs")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   142
proof
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   143
  assume ?lhs then show ?rhs by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   144
next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   145
  assume ?rhs
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   146
  then have "x \<bullet> x - x \<bullet> y = 0 \<and> x \<bullet> y - y \<bullet> y = 0" by simp
44454
6f28f96a09bf avoid warnings
huffman
parents: 44451
diff changeset
   147
  hence "x \<bullet> (x - y) = 0 \<and> y \<bullet> (x - y) = 0" by (simp add: inner_diff inner_commute)
6f28f96a09bf avoid warnings
huffman
parents: 44451
diff changeset
   148
  then have "(x - y) \<bullet> (x - y) = 0" by (simp add: field_simps inner_diff inner_commute)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   149
  then show "x = y" by (simp)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   150
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   151
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   152
lemma norm_triangle_half_r:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   153
  shows "norm (y - x1) < e / 2 \<Longrightarrow> norm (y - x2) < e / 2 \<Longrightarrow> norm (x1 - x2) < e"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   154
  using dist_triangle_half_r unfolding dist_norm[THEN sym] by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   155
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   156
lemma norm_triangle_half_l: assumes "norm (x - y) < e / 2" "norm (x' - (y)) < e / 2" 
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   157
  shows "norm (x - x') < e"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   158
  using dist_triangle_half_l[OF assms[unfolded dist_norm[THEN sym]]]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   159
  unfolding dist_norm[THEN sym] .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   160
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   161
lemma norm_triangle_le: "norm(x) + norm y <= e ==> norm(x + y) <= e"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   162
  by (metis order_trans norm_triangle_ineq)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   163
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   164
lemma norm_triangle_lt: "norm(x) + norm(y) < e ==> norm(x + y) < e"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   165
  by (metis basic_trans_rules(21) norm_triangle_ineq)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   166
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   167
lemma setsum_clauses:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   168
  shows "setsum f {} = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   169
  and "finite S \<Longrightarrow> setsum f (insert x S) =
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   170
                 (if x \<in> S then setsum f S else f x + setsum f S)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   171
  by (auto simp add: insert_absorb)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   172
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   173
lemma setsum_norm_le:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   174
  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
   175
  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
   176
  shows "norm (setsum f S) \<le> setsum g S"
44176
eda112e9cdee remove redundant lemma setsum_norm in favor of norm_setsum;
huffman
parents: 44170
diff changeset
   177
  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
   178
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   179
lemma setsum_norm_bound:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   180
  fixes f :: "'a \<Rightarrow> 'b::real_normed_vector"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   181
  assumes fS: "finite S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   182
  and K: "\<forall>x \<in> S. norm (f x) \<le> K"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   183
  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
   184
  using setsum_norm_le[OF K] setsum_constant[symmetric]
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   185
  by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   186
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   187
lemma setsum_group:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   188
  assumes fS: "finite S" and fT: "finite T" and fST: "f ` S \<subseteq> T"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   189
  shows "setsum (\<lambda>y. setsum g {x. x\<in> S \<and> f x = y}) T = setsum g S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   190
  apply (subst setsum_image_gen[OF fS, of g f])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   191
  apply (rule setsum_mono_zero_right[OF fT fST])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   192
  by (auto intro: setsum_0')
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   193
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   194
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
   195
proof
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   196
  assume "\<forall>x. x \<bullet> y = x \<bullet> z"
44454
6f28f96a09bf avoid warnings
huffman
parents: 44451
diff changeset
   197
  hence "\<forall>x. x \<bullet> (y - z) = 0" by (simp add: inner_diff)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   198
  hence "(y - z) \<bullet> (y - z) = 0" ..
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   199
  thus "y = z" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   200
qed simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   201
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   202
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
   203
proof
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   204
  assume "\<forall>z. x \<bullet> z = y \<bullet> z"
44454
6f28f96a09bf avoid warnings
huffman
parents: 44451
diff changeset
   205
  hence "\<forall>z. (x - y) \<bullet> z = 0" by (simp add: inner_diff)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   206
  hence "(x - y) \<bullet> (x - y) = 0" ..
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   207
  thus "x = y" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   208
qed simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   209
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   210
subsection{* Orthogonality. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   211
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   212
context real_inner
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   213
begin
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   214
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   215
definition "orthogonal x y \<longleftrightarrow> (x \<bullet> y = 0)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   216
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   217
lemma orthogonal_clauses:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   218
  "orthogonal a 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   219
  "orthogonal a x \<Longrightarrow> orthogonal a (c *\<^sub>R x)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   220
  "orthogonal a x \<Longrightarrow> orthogonal a (-x)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   221
  "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
   222
  "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
   223
  "orthogonal 0 a"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   224
  "orthogonal x a \<Longrightarrow> orthogonal (c *\<^sub>R x) a"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   225
  "orthogonal x a \<Longrightarrow> orthogonal (-x) a"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   226
  "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
   227
  "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
   228
  unfolding orthogonal_def inner_simps inner_add_left inner_add_right inner_diff_left inner_diff_right (*FIXME*) by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   229
 
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   230
end
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   231
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   232
lemma orthogonal_commute: "orthogonal x y \<longleftrightarrow> orthogonal y x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   233
  by (simp add: orthogonal_def inner_commute)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   234
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   235
subsection{* Linear functions. *}
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
definition
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   238
  linear :: "('a::real_vector \<Rightarrow> 'b::real_vector) \<Rightarrow> bool" where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   239
  "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)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   240
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   241
lemma linearI: assumes "\<And>x y. f (x + y) = f x + f y" "\<And>c x. f (c *\<^sub>R x) = c *\<^sub>R f x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   242
  shows "linear f" using assms unfolding linear_def by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   243
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   244
lemma linear_compose_cmul: "linear f ==> linear (\<lambda>x. c *\<^sub>R f x)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   245
  by (simp add: linear_def algebra_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   246
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   247
lemma linear_compose_neg: "linear f ==> linear (\<lambda>x. -(f(x)))"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   248
  by (simp add: linear_def)
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_compose_add: "linear f \<Longrightarrow> linear g ==> linear (\<lambda>x. f(x) + g(x))"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   251
  by (simp add: linear_def algebra_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   252
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   253
lemma linear_compose_sub: "linear f \<Longrightarrow> linear g ==> linear (\<lambda>x. f x - g x)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   254
  by (simp add: linear_def algebra_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   255
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   256
lemma linear_compose: "linear f \<Longrightarrow> linear g ==> linear (g o f)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   257
  by (simp add: linear_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   258
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   259
lemma linear_id: "linear id" by (simp add: linear_def id_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   260
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   261
lemma linear_zero: "linear (\<lambda>x. 0)" by (simp add: linear_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   262
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   263
lemma linear_compose_setsum:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   264
  assumes fS: "finite S" and lS: "\<forall>a \<in> S. linear (f a)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   265
  shows "linear(\<lambda>x. setsum (\<lambda>a. f a x) S)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   266
  using lS
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   267
  apply (induct rule: finite_induct[OF fS])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   268
  by (auto simp add: linear_zero intro: linear_compose_add)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   269
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   270
lemma linear_0: "linear f \<Longrightarrow> f 0 = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   271
  unfolding linear_def
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   272
  apply clarsimp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   273
  apply (erule allE[where x="0::'a"])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   274
  apply simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   275
  done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   276
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   277
lemma linear_cmul: "linear f ==> f(c *\<^sub>R x) = c *\<^sub>R f x" by (simp add: linear_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   278
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   279
lemma linear_neg: "linear f ==> f (-x) = - f x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   280
  using linear_cmul [where c="-1"] by simp
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_add: "linear f ==> f(x + y) = f x + f y" by (metis linear_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   283
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   284
lemma linear_sub: "linear f ==> f(x - y) = f x - f y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   285
  by (simp add: diff_minus linear_add linear_neg)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   286
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   287
lemma linear_setsum:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   288
  assumes lf: "linear f" and fS: "finite S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   289
  shows "f (setsum g S) = setsum (f o g) S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   290
proof (induct rule: finite_induct[OF fS])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   291
  case 1 thus ?case by (simp add: linear_0[OF lf])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   292
next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   293
  case (2 x F)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   294
  have "f (setsum g (insert x F)) = f (g x + setsum g F)" using "2.hyps"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   295
    by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   296
  also have "\<dots> = f (g x) + f (setsum g F)" using linear_add[OF lf] by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   297
  also have "\<dots> = setsum (f o g) (insert x F)" using "2.hyps" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   298
  finally show ?case .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   299
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   300
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   301
lemma linear_setsum_mul:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   302
  assumes lf: "linear f" and fS: "finite S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   303
  shows "f (setsum (\<lambda>i. c i *\<^sub>R v i) S) = setsum (\<lambda>i. c i *\<^sub>R f (v i)) S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   304
  using linear_setsum[OF lf fS, of "\<lambda>i. c i *\<^sub>R v i" , unfolded o_def]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   305
  linear_cmul[OF lf] by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   306
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   307
lemma linear_injective_0:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   308
  assumes lf: "linear f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   309
  shows "inj f \<longleftrightarrow> (\<forall>x. f x = 0 \<longrightarrow> x = 0)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   310
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   311
  have "inj f \<longleftrightarrow> (\<forall> x y. f x = f y \<longrightarrow> x = y)" by (simp add: inj_on_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   312
  also have "\<dots> \<longleftrightarrow> (\<forall> x y. f x - f y = 0 \<longrightarrow> x - y = 0)" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   313
  also have "\<dots> \<longleftrightarrow> (\<forall> x y. f (x - y) = 0 \<longrightarrow> x - y = 0)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   314
    by (simp add: linear_sub[OF lf])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   315
  also have "\<dots> \<longleftrightarrow> (\<forall> x. f x = 0 \<longrightarrow> x = 0)" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   316
  finally show ?thesis .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   317
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   318
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   319
subsection{* Bilinear functions. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   320
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   321
definition "bilinear f \<longleftrightarrow> (\<forall>x. linear(\<lambda>y. f x y)) \<and> (\<forall>y. linear(\<lambda>x. f x y))"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   322
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   323
lemma bilinear_ladd: "bilinear h ==> h (x + y) z = (h x z) + (h y z)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   324
  by (simp add: bilinear_def linear_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   325
lemma bilinear_radd: "bilinear h ==> h x (y + z) = (h x y) + (h x z)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   326
  by (simp add: bilinear_def linear_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   327
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   328
lemma bilinear_lmul: "bilinear h ==> h (c *\<^sub>R x) y = c *\<^sub>R (h x y)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   329
  by (simp add: bilinear_def linear_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   330
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   331
lemma bilinear_rmul: "bilinear h ==> h x (c *\<^sub>R y) = c *\<^sub>R (h x y)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   332
  by (simp add: bilinear_def linear_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   333
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   334
lemma bilinear_lneg: "bilinear h ==> h (- x) y = -(h x y)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   335
  by (simp only: scaleR_minus1_left [symmetric] bilinear_lmul)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   336
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   337
lemma bilinear_rneg: "bilinear h ==> h x (- y) = - h x y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   338
  by (simp only: scaleR_minus1_left [symmetric] bilinear_rmul)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   339
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   340
lemma  (in ab_group_add) eq_add_iff: "x = x + y \<longleftrightarrow> y = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   341
  using add_imp_eq[of x y 0] by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   342
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   343
lemma bilinear_lzero:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   344
  assumes bh: "bilinear h" shows "h 0 x = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   345
  using bilinear_ladd[OF bh, of 0 0 x]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   346
    by (simp add: eq_add_iff field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   347
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   348
lemma bilinear_rzero:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   349
  assumes bh: "bilinear h" shows "h x 0 = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   350
  using bilinear_radd[OF bh, of x 0 0 ]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   351
    by (simp add: eq_add_iff field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   352
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   353
lemma bilinear_lsub: "bilinear h ==> h (x - y) z = h x z - h y z"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   354
  by (simp  add: diff_minus bilinear_ladd bilinear_lneg)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   355
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   356
lemma bilinear_rsub: "bilinear h ==> h z (x - y) = h z x - h z y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   357
  by (simp  add: diff_minus bilinear_radd bilinear_rneg)
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:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   360
  assumes bh: "bilinear h" and fS: "finite S" and fT: "finite T"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   361
  shows "h (setsum f S) (setsum g T) = setsum (\<lambda>(i,j). h (f i) (g j)) (S \<times> T) "
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   362
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   363
  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
   364
    apply (rule linear_setsum[unfolded o_def])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   365
    using bh fS by (auto simp add: bilinear_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   366
  also have "\<dots> = setsum (\<lambda>x. setsum (\<lambda>y. h (f x) (g y)) T) S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   367
    apply (rule setsum_cong, simp)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   368
    apply (rule linear_setsum[unfolded o_def])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   369
    using bh fT by (auto simp add: bilinear_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   370
  finally show ?thesis unfolding setsum_cartesian_product .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   371
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   372
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   373
subsection{* Adjoints. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   374
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   375
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
   376
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   377
lemma adjoint_unique:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   378
  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
   379
  shows "adjoint f = g"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   380
unfolding adjoint_def
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   381
proof (rule some_equality)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   382
  show "\<forall>x y. inner (f x) y = inner x (g y)" using assms .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   383
next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   384
  fix h assume "\<forall>x y. inner (f x) y = inner x (h y)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   385
  hence "\<forall>x y. inner x (g y) = inner x (h y)" using assms by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   386
  hence "\<forall>x y. inner x (g y - h y) = 0" by (simp add: inner_diff_right)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   387
  hence "\<forall>y. inner (g y - h y) (g y - h y) = 0" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   388
  hence "\<forall>y. h y = g y" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   389
  thus "h = g" by (simp add: ext)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   390
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   391
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   392
lemma choice_iff: "(\<forall>x. \<exists>y. P x y) \<longleftrightarrow> (\<exists>f. \<forall>x. P x (f x))" by metis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   393
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   394
subsection{* Interlude: Some properties of real sets *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   395
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   396
lemma seq_mono_lemma: assumes "\<forall>(n::nat) \<ge> m. (d n :: real) < e n" and "\<forall>n \<ge> m. e n <= e m"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   397
  shows "\<forall>n \<ge> m. d n < e m"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   398
  using assms apply auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   399
  apply (erule_tac x="n" in allE)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   400
  apply (erule_tac x="n" in allE)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   401
  apply auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   402
  done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   403
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   404
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   405
lemma infinite_enumerate: assumes fS: "infinite S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   406
  shows "\<exists>r. subseq r \<and> (\<forall>n. r n \<in> S)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   407
unfolding subseq_def
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   408
using enumerate_in_set[OF fS] enumerate_mono[of _ _ S] fS by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   409
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   410
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)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   411
apply auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   412
apply (rule_tac x="d/2" in exI)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   413
apply auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   414
done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   415
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   416
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   417
lemma triangle_lemma:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   418
  assumes x: "0 <= (x::real)" and y:"0 <= y" and z: "0 <= z" and xy: "x^2 <= y^2 + z^2"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   419
  shows "x <= y + z"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   420
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   421
  have "y^2 + z^2 \<le> y^2 + 2*y*z + z^2" using z y by (simp add: mult_nonneg_nonneg)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   422
  with xy have th: "x ^2 \<le> (y+z)^2" by (simp add: power2_eq_square field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   423
  from y z have yz: "y + z \<ge> 0" by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   424
  from power2_le_imp_le[OF th yz] show ?thesis .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   425
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   426
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   427
text {* TODO: move to NthRoot *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   428
lemma sqrt_add_le_add_sqrt:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   429
  assumes x: "0 \<le> x" and y: "0 \<le> y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   430
  shows "sqrt (x + y) \<le> sqrt x + sqrt y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   431
apply (rule power2_le_imp_le)
44142
8e27e0177518 avoid warnings about duplicate rules
huffman
parents: 44133
diff changeset
   432
apply (simp add: real_sum_squared_expand x y)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   433
apply (simp add: mult_nonneg_nonneg x y)
44142
8e27e0177518 avoid warnings about duplicate rules
huffman
parents: 44133
diff changeset
   434
apply (simp add: x y)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   435
done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   436
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   437
subsection {* A generic notion of "hull" (convex, affine, conic hull and closure). *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   438
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   439
definition hull :: "('a set \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> 'a set" (infixl "hull" 75) where
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   440
  "S hull s = Inter {t. S t \<and> s \<subseteq> t}"
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   441
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   442
lemma hull_same: "S s \<Longrightarrow> S hull s = s"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   443
  unfolding hull_def by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   444
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   445
lemma hull_in: "(\<And>T. Ball T S ==> S (Inter T)) ==> S (S hull s)"
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   446
unfolding hull_def Ball_def by auto
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   447
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   448
lemma hull_eq: "(\<And>T. Ball T S ==> S (Inter T)) ==> (S hull s) = s \<longleftrightarrow> S s"
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   449
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
   450
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   451
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   452
lemma hull_hull: "S hull (S hull s) = S hull s"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   453
  unfolding hull_def by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   454
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   455
lemma hull_subset[intro]: "s \<subseteq> (S hull s)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   456
  unfolding hull_def by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   457
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   458
lemma hull_mono: " s \<subseteq> t ==> (S hull s) \<subseteq> (S hull t)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   459
  unfolding hull_def by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   460
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   461
lemma hull_antimono: "\<forall>x. S x \<longrightarrow> T x ==> (T hull s) \<subseteq> (S hull s)"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   462
  unfolding hull_def by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   463
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   464
lemma hull_minimal: "s \<subseteq> t \<Longrightarrow> S t ==> (S hull s) \<subseteq> t"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   465
  unfolding hull_def by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   466
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   467
lemma subset_hull: "S t ==> S hull s \<subseteq> t \<longleftrightarrow>  s \<subseteq> t"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   468
  unfolding hull_def by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   469
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   470
lemma hull_unique: "s \<subseteq> t \<Longrightarrow> S t \<Longrightarrow> (\<And>t'. s \<subseteq> t' \<Longrightarrow> S t' ==> t \<subseteq> t')
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   471
           ==> (S hull s = t)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   472
unfolding hull_def by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   473
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   474
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
   475
  using hull_minimal[of S "{x. P x}" Q]
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   476
  by (auto simp add: subset_eq)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   477
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   478
lemma hull_inc: "x \<in> S \<Longrightarrow> x \<in> P hull S" by (metis hull_subset subset_eq)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   479
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   480
lemma hull_union_subset: "(S hull s) \<union> (S hull t) \<subseteq> (S hull (s \<union> t))"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   481
unfolding Un_subset_iff by (metis hull_mono Un_upper1 Un_upper2)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   482
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   483
lemma hull_union: assumes T: "\<And>T. Ball T S ==> S (Inter T)"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   484
  shows "S hull (s \<union> t) = S hull (S hull s \<union> S hull t)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   485
apply rule
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   486
apply (rule hull_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   487
unfolding Un_subset_iff
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   488
apply (metis hull_subset Un_upper1 Un_upper2 subset_trans)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   489
apply (rule hull_minimal)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   490
apply (metis hull_union_subset)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   491
apply (metis hull_in T)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   492
done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   493
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   494
lemma hull_redundant_eq: "a \<in> (S hull s) \<longleftrightarrow> (S hull (insert a s) = S hull s)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   495
  unfolding hull_def by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   496
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   497
lemma hull_redundant: "a \<in> (S hull s) ==> (S hull (insert a s) = S hull s)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   498
by (metis hull_redundant_eq)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   499
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   500
text{* Archimedian properties and useful consequences. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   501
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   502
lemma real_arch_simple: "\<exists>n. x <= real (n::nat)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   503
  using reals_Archimedean2[of x] apply auto by (rule_tac x="Suc n" in exI, auto)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   504
lemmas real_arch_lt = reals_Archimedean2
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   505
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   506
lemmas real_arch = reals_Archimedean3
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   507
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   508
lemma real_arch_inv: "0 < e \<longleftrightarrow> (\<exists>n::nat. n \<noteq> 0 \<and> 0 < inverse (real n) \<and> inverse (real n) < e)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   509
  using reals_Archimedean
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   510
  apply (auto simp add: field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   511
  apply (subgoal_tac "inverse (real n) > 0")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   512
  apply arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   513
  apply simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   514
  done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   515
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   516
lemma real_pow_lbound: "0 <= x ==> 1 + real n * x <= (1 + x) ^ n"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   517
proof(induct n)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   518
  case 0 thus ?case by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   519
next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   520
  case (Suc n)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   521
  hence h: "1 + real n * x \<le> (1 + x) ^ n" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   522
  from h have p: "1 \<le> (1 + x) ^ n" using Suc.prems by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   523
  from h have "1 + real n * x + x \<le> (1 + x) ^ n + x" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   524
  also have "\<dots> \<le> (1 + x) ^ Suc n" apply (subst diff_le_0_iff_le[symmetric])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   525
    apply (simp add: field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   526
    using mult_left_mono[OF p Suc.prems] by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   527
  finally show ?case  by (simp add: real_of_nat_Suc field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   528
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   529
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   530
lemma real_arch_pow: assumes x: "1 < (x::real)" shows "\<exists>n. y < x^n"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   531
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   532
  from x have x0: "x - 1 > 0" by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   533
  from real_arch[OF x0, rule_format, of y]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   534
  obtain n::nat where n:"y < real n * (x - 1)" by metis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   535
  from x0 have x00: "x- 1 \<ge> 0" by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   536
  from real_pow_lbound[OF x00, of n] n
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   537
  have "y < x^n" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   538
  then show ?thesis by metis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   539
qed
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 real_arch_pow2: "\<exists>n. (x::real) < 2^ n"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   542
  using real_arch_pow[of 2 x] by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   543
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   544
lemma real_arch_pow_inv: assumes y: "(y::real) > 0" and x1: "x < 1"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   545
  shows "\<exists>n. x^n < y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   546
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   547
  {assume x0: "x > 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   548
    from x0 x1 have ix: "1 < 1/x" by (simp add: field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   549
    from real_arch_pow[OF ix, of "1/y"]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   550
    obtain n where n: "1/y < (1/x)^n" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   551
    then
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   552
    have ?thesis using y x0 by (auto simp add: field_simps power_divide) }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   553
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   554
  {assume "\<not> x > 0" with y x1 have ?thesis apply auto by (rule exI[where x=1], auto)}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   555
  ultimately show ?thesis by metis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   556
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   557
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   558
lemma forall_pos_mono: "(\<And>d e::real. d < e \<Longrightarrow> P d ==> P e) \<Longrightarrow> (\<And>n::nat. n \<noteq> 0 ==> P(inverse(real n))) \<Longrightarrow> (\<And>e. 0 < e ==> P e)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   559
  by (metis real_arch_inv)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   560
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   561
lemma forall_pos_mono_1: "(\<And>d e::real. d < e \<Longrightarrow> P d ==> P e) \<Longrightarrow> (\<And>n. P(inverse(real (Suc n)))) ==> 0 < e ==> P e"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   562
  apply (rule forall_pos_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   563
  apply auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   564
  apply (atomize)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   565
  apply (erule_tac x="n - 1" in allE)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   566
  apply auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   567
  done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   568
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   569
lemma real_archimedian_rdiv_eq_0: assumes x0: "x \<ge> 0" and c: "c \<ge> 0" and xc: "\<forall>(m::nat)>0. real m * x \<le> c"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   570
  shows "x = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   571
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   572
  {assume "x \<noteq> 0" with x0 have xp: "x > 0" by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   573
    from real_arch[OF xp, rule_format, of c] obtain n::nat where n: "c < real n * x"  by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   574
    with xc[rule_format, of n] have "n = 0" by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   575
    with n c have False by simp}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   576
  then show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   577
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   578
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   579
subsection{* A bit of linear algebra. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   580
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   581
definition (in real_vector)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   582
  subspace :: "'a set \<Rightarrow> bool" where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   583
  "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 )"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   584
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   585
definition (in real_vector) "span S = (subspace hull S)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   586
definition (in real_vector) "dependent S \<longleftrightarrow> (\<exists>a \<in> S. a \<in> span(S - {a}))"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   587
abbreviation (in real_vector) "independent s == ~(dependent s)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   588
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   589
text {* Closure properties of subspaces. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   590
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   591
lemma subspace_UNIV[simp]: "subspace(UNIV)" by (simp add: subspace_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   592
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   593
lemma (in real_vector) subspace_0: "subspace S ==> 0 \<in> S" by (metis subspace_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   594
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   595
lemma (in real_vector) subspace_add: "subspace S \<Longrightarrow> x \<in> S \<Longrightarrow> y \<in> S ==> x + y \<in> S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   596
  by (metis subspace_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   597
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   598
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
   599
  by (metis subspace_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   600
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   601
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
   602
  by (metis scaleR_minus1_left subspace_mul)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   603
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   604
lemma subspace_sub: "subspace S \<Longrightarrow> x \<in> S \<Longrightarrow> y \<in> S \<Longrightarrow> x - y \<in> S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   605
  by (metis diff_minus subspace_add subspace_neg)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   606
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   607
lemma (in real_vector) subspace_setsum:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   608
  assumes sA: "subspace A" and fB: "finite B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   609
  and f: "\<forall>x\<in> B. f x \<in> A"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   610
  shows "setsum f B \<in> A"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   611
  using  fB f sA
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   612
  apply(induct rule: finite_induct[OF fB])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   613
  by (simp add: subspace_def sA, auto simp add: sA subspace_add)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   614
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   615
lemma subspace_linear_image:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   616
  assumes lf: "linear f" and sS: "subspace S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   617
  shows "subspace(f ` S)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   618
  using lf sS linear_0[OF lf]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   619
  unfolding linear_def subspace_def
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   620
  apply (auto simp add: image_iff)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   621
  apply (rule_tac x="x + y" in bexI, auto)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   622
  apply (rule_tac x="c *\<^sub>R x" in bexI, auto)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   623
  done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   624
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   625
lemma subspace_linear_vimage: "linear f \<Longrightarrow> subspace S \<Longrightarrow> subspace (f -` S)"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   626
  by (auto simp add: subspace_def linear_def linear_0[of f])
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   627
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   628
lemma subspace_linear_preimage: "linear f ==> subspace S ==> subspace {x. f x \<in> S}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   629
  by (auto simp add: subspace_def linear_def linear_0[of f])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   630
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   631
lemma subspace_trivial: "subspace {0}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   632
  by (simp add: subspace_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   633
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   634
lemma (in real_vector) subspace_inter: "subspace A \<Longrightarrow> subspace B ==> subspace (A \<inter> B)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   635
  by (simp add: subspace_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   636
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   637
lemma subspace_Times: "\<lbrakk>subspace A; subspace B\<rbrakk> \<Longrightarrow> subspace (A \<times> B)"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   638
  unfolding subspace_def zero_prod_def by simp
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   639
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   640
text {* Properties of span. *}
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   641
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   642
lemma (in real_vector) span_mono: "A \<subseteq> B ==> span A \<subseteq> span B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   643
  by (metis span_def hull_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   644
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   645
lemma (in real_vector) subspace_span: "subspace(span S)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   646
  unfolding span_def
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   647
  apply (rule hull_in)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   648
  apply (simp only: subspace_def Inter_iff Int_iff subset_eq)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   649
  apply auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   650
  done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   651
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   652
lemma (in real_vector) span_clauses:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   653
  "a \<in> S ==> a \<in> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   654
  "0 \<in> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   655
  "x\<in> span S \<Longrightarrow> y \<in> span S ==> x + y \<in> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   656
  "x \<in> span S \<Longrightarrow> c *\<^sub>R x \<in> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   657
  by (metis span_def hull_subset subset_eq)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   658
     (metis subspace_span subspace_def)+
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   659
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   660
lemma span_unique:
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   661
  "\<lbrakk>S \<subseteq> T; subspace T; \<And>T'. \<lbrakk>S \<subseteq> T'; subspace T'\<rbrakk> \<Longrightarrow> T \<subseteq> T'\<rbrakk> \<Longrightarrow> span S = T"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   662
  unfolding span_def by (rule hull_unique)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   663
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   664
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
   665
  unfolding span_def by (rule hull_minimal)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   666
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   667
lemma (in real_vector) span_induct:
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   668
  assumes x: "x \<in> span S" and P: "subspace P" and SP: "\<And>x. x \<in> S ==> x \<in> P"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   669
  shows "x \<in> P"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   670
proof-
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   671
  from SP have SP': "S \<subseteq> P" by (simp add: subset_eq)
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   672
  from x hull_minimal[where S=subspace, OF SP' P, unfolded span_def[symmetric]]
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   673
  show "x \<in> P" by (metis subset_eq)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   674
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   675
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   676
lemma span_empty[simp]: "span {} = {0}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   677
  apply (simp add: span_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   678
  apply (rule hull_unique)
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   679
  apply (auto simp add: subspace_def)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   680
  done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   681
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   682
lemma (in real_vector) independent_empty[intro]: "independent {}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   683
  by (simp add: dependent_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   684
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   685
lemma dependent_single[simp]:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   686
  "dependent {x} \<longleftrightarrow> x = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   687
  unfolding dependent_def by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   688
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   689
lemma (in real_vector) independent_mono: "independent A \<Longrightarrow> B \<subseteq> A ==> independent B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   690
  apply (clarsimp simp add: dependent_def span_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   691
  apply (subgoal_tac "span (B - {a}) \<le> span (A - {a})")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   692
  apply force
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   693
  apply (rule span_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   694
  apply auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   695
  done
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
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
   698
  by (metis order_antisym span_def hull_minimal)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   699
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   700
lemma (in real_vector) span_induct': assumes SP: "\<forall>x \<in> S. P x"
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   701
  and P: "subspace {x. P x}" shows "\<forall>x \<in> span S. P x"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   702
  using span_induct SP P by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   703
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   704
inductive_set (in real_vector) span_induct_alt_help for S:: "'a set"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   705
  where
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   706
  span_induct_alt_help_0: "0 \<in> span_induct_alt_help S"
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   707
  | span_induct_alt_help_S: "x \<in> S \<Longrightarrow> z \<in> span_induct_alt_help S \<Longrightarrow> (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
   708
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   709
lemma span_induct_alt':
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   710
  assumes h0: "h 0" and hS: "\<And>c x y. x \<in> S \<Longrightarrow> h y \<Longrightarrow> h (c *\<^sub>R x + y)" shows "\<forall>x \<in> span S. h x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   711
proof-
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   712
  {fix x:: "'a" assume x: "x \<in> span_induct_alt_help S"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   713
    have "h x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   714
      apply (rule span_induct_alt_help.induct[OF x])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   715
      apply (rule h0)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   716
      apply (rule hS, assumption, assumption)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   717
      done}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   718
  note th0 = this
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   719
  {fix x assume x: "x \<in> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   720
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   721
    have "x \<in> span_induct_alt_help S"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   722
      proof(rule span_induct[where x=x and S=S])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   723
        show "x \<in> span S" using x .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   724
      next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   725
        fix x assume xS : "x \<in> S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   726
          from span_induct_alt_help_S[OF xS span_induct_alt_help_0, of 1]
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   727
          show "x \<in> span_induct_alt_help S" by simp
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   728
        next
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   729
        have "0 \<in> span_induct_alt_help S" by (rule span_induct_alt_help_0)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   730
        moreover
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   731
        {fix x y assume h: "x \<in> span_induct_alt_help S" "y \<in> span_induct_alt_help S"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   732
          from h
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   733
          have "(x + y) \<in> span_induct_alt_help S"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   734
            apply (induct rule: span_induct_alt_help.induct)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   735
            apply simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   736
            unfolding add_assoc
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   737
            apply (rule span_induct_alt_help_S)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   738
            apply assumption
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   739
            apply simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   740
            done}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   741
        moreover
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   742
        {fix c x assume xt: "x \<in> span_induct_alt_help S"
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   743
          then have "(c *\<^sub>R x) \<in> span_induct_alt_help S"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   744
            apply (induct rule: span_induct_alt_help.induct)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   745
            apply (simp add: span_induct_alt_help_0)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   746
            apply (simp add: scaleR_right_distrib)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   747
            apply (rule span_induct_alt_help_S)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   748
            apply assumption
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   749
            apply simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   750
            done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   751
        }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   752
        ultimately show "subspace (span_induct_alt_help S)"
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   753
          unfolding subspace_def Ball_def by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   754
      qed}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   755
  with th0 show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   756
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   757
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   758
lemma span_induct_alt:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   759
  assumes h0: "h 0" and hS: "\<And>c x y. x \<in> S \<Longrightarrow> h y \<Longrightarrow> h (c *\<^sub>R x + y)" and x: "x \<in> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   760
  shows "h x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   761
using span_induct_alt'[of h S] h0 hS x by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   762
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   763
text {* Individual closure properties. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   764
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   765
lemma span_span: "span (span A) = span A"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   766
  unfolding span_def hull_hull ..
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   767
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   768
lemma (in real_vector) span_superset: "x \<in> S ==> x \<in> span S" by (metis span_clauses(1))
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   769
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   770
lemma (in real_vector) span_0: "0 \<in> span S" by (metis subspace_span subspace_0)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   771
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   772
lemma span_inc: "S \<subseteq> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   773
  by (metis subset_eq span_superset)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   774
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   775
lemma (in real_vector) dependent_0: assumes "0\<in>A" shows "dependent A"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   776
  unfolding dependent_def apply(rule_tac x=0 in bexI)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   777
  using assms span_0 by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   778
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   779
lemma (in real_vector) span_add: "x \<in> span S \<Longrightarrow> y \<in> span S ==> x + y \<in> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   780
  by (metis subspace_add subspace_span)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   781
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   782
lemma (in real_vector) span_mul: "x \<in> span S ==> (c *\<^sub>R x) \<in> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   783
  by (metis subspace_span subspace_mul)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   784
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   785
lemma span_neg: "x \<in> span S ==> - x \<in> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   786
  by (metis subspace_neg subspace_span)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   787
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   788
lemma span_sub: "x \<in> span S \<Longrightarrow> y \<in> span S ==> x - y \<in> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   789
  by (metis subspace_span subspace_sub)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   790
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   791
lemma (in real_vector) span_setsum: "finite A \<Longrightarrow> \<forall>x \<in> A. f x \<in> span S ==> setsum f A \<in> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   792
  by (rule subspace_setsum, rule subspace_span)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   793
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   794
lemma span_add_eq: "x \<in> span S \<Longrightarrow> x + y \<in> span S \<longleftrightarrow> y \<in> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   795
  apply (auto simp only: span_add span_sub)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   796
  apply (subgoal_tac "(x + y) - x \<in> span S", simp)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   797
  by (simp only: span_add span_sub)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   798
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   799
text {* Mapping under linear image. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   800
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   801
lemma image_subset_iff_subset_vimage: "f ` A \<subseteq> B \<longleftrightarrow> A \<subseteq> f -` B"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   802
  by auto (* TODO: move *)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   803
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   804
lemma span_linear_image:
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   805
  assumes lf: "linear f"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   806
  shows "span (f ` S) = f ` (span S)"
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   807
proof (rule span_unique)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   808
  show "f ` S \<subseteq> f ` span S"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   809
    by (intro image_mono span_inc)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   810
  show "subspace (f ` span S)"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   811
    using lf subspace_span by (rule subspace_linear_image)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   812
next
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   813
  fix T assume "f ` S \<subseteq> T" and "subspace T" thus "f ` span S \<subseteq> T"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   814
    unfolding image_subset_iff_subset_vimage
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   815
    by (intro span_minimal subspace_linear_vimage lf)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   816
qed
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   817
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   818
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
   819
proof (rule span_unique)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   820
  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
   821
    by safe (force intro: span_clauses)+
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   822
next
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   823
  have "linear (\<lambda>(a, b). a + b)"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   824
    by (simp add: linear_def scaleR_add_right)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   825
  moreover have "subspace (span A \<times> span B)"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   826
    by (intro subspace_Times subspace_span)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   827
  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
   828
    by (rule subspace_linear_image)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   829
next
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   830
  fix T assume "A \<union> B \<subseteq> T" and "subspace T"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   831
  thus "(\<lambda>(a, b). a + b) ` (span A \<times> span B) \<subseteq> T"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   832
    by (auto intro!: subspace_add elim: span_induct)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   833
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   834
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   835
text {* The key breakdown property. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   836
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   837
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
   838
proof (rule span_unique)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   839
  show "{x} \<subseteq> range (\<lambda>k. k *\<^sub>R x)"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   840
    by (fast intro: scaleR_one [symmetric])
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   841
  show "subspace (range (\<lambda>k. k *\<^sub>R x))"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   842
    unfolding subspace_def
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   843
    by (auto intro: scaleR_add_left [symmetric])
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   844
  fix T assume "{x} \<subseteq> T" and "subspace T" thus "range (\<lambda>k. k *\<^sub>R x) \<subseteq> T"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   845
    unfolding subspace_def by auto
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   846
qed
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   847
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   848
lemma span_insert:
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   849
  "span (insert a 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
   850
proof -
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   851
  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
   852
    unfolding span_union span_singleton
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   853
    apply safe
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   854
    apply (rule_tac x=k in exI, simp)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   855
    apply (erule rev_image_eqI [OF SigmaI [OF rangeI]])
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   856
    apply simp
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   857
    apply (rule right_minus)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   858
    done
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   859
  thus ?thesis by simp
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   860
qed
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   861
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   862
lemma span_breakdown:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   863
  assumes bS: "b \<in> S" and aS: "a \<in> span S"
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   864
  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
   865
  using assms span_insert [of b "S - {b}"]
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   866
  by (simp add: insert_absorb)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   867
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   868
lemma span_breakdown_eq:
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   869
  "x \<in> span (insert a S) \<longleftrightarrow> (\<exists>k. (x - k *\<^sub>R a) \<in> span S)"
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   870
  by (simp add: span_insert)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   871
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   872
text {* Hence some "reversal" results. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   873
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   874
lemma in_span_insert:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   875
  assumes a: "a \<in> span (insert b S)" and na: "a \<notin> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   876
  shows "b \<in> span (insert a S)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   877
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   878
  from span_breakdown[of b "insert b S" a, OF insertI1 a]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   879
  obtain k where k: "a - k*\<^sub>R b \<in> span (S - {b})" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   880
  {assume k0: "k = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   881
    with k have "a \<in> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   882
      apply (simp)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   883
      apply (rule set_rev_mp)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   884
      apply assumption
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   885
      apply (rule span_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   886
      apply blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   887
      done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   888
    with na  have ?thesis by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   889
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   890
  {assume k0: "k \<noteq> 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   891
    have eq: "b = (1/k) *\<^sub>R a - ((1/k) *\<^sub>R a - b)" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   892
    from k0 have eq': "(1/k) *\<^sub>R (a - k*\<^sub>R b) = (1/k) *\<^sub>R a - b"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   893
      by (simp add: algebra_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   894
    from k have "(1/k) *\<^sub>R (a - k*\<^sub>R b) \<in> span (S - {b})"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   895
      by (rule span_mul)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   896
    hence th: "(1/k) *\<^sub>R a - b \<in> span (S - {b})"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   897
      unfolding eq' .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   898
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   899
    from k
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   900
    have ?thesis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   901
      apply (subst eq)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   902
      apply (rule span_sub)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   903
      apply (rule span_mul)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   904
      apply (rule span_superset)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   905
      apply blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   906
      apply (rule set_rev_mp)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   907
      apply (rule th)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   908
      apply (rule span_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   909
      using na by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   910
  ultimately show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   911
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   912
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   913
lemma in_span_delete:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   914
  assumes a: "a \<in> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   915
  and na: "a \<notin> span (S-{b})"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   916
  shows "b \<in> span (insert a (S - {b}))"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   917
  apply (rule in_span_insert)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   918
  apply (rule set_rev_mp)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   919
  apply (rule a)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   920
  apply (rule span_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   921
  apply blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   922
  apply (rule na)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   923
  done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   924
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   925
text {* Transitivity property. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   926
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   927
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
   928
  unfolding span_def by (rule hull_redundant)
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   929
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   930
lemma span_trans:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   931
  assumes x: "x \<in> span S" and y: "y \<in> span (insert x S)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   932
  shows "y \<in> span S"
44521
083eedb37a37 simplify many proofs about subspace and span;
huffman
parents: 44517
diff changeset
   933
  using assms by (simp only: span_redundant)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   934
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   935
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
   936
  by (simp only: span_redundant span_0)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   937
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   938
text {* An explicit expansion is sometimes needed. *}
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_explicit:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   941
  "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
   942
  (is "_ = ?E" is "_ = {y. ?h y}" is "_ = {y. \<exists>S u. ?Q S u y}")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   943
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   944
  {fix x assume x: "x \<in> ?E"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   945
    then obtain S u where fS: "finite S" and SP: "S\<subseteq>P" and u: "setsum (\<lambda>v. u v *\<^sub>R v) S = x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   946
      by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   947
    have "x \<in> span P"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   948
      unfolding u[symmetric]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   949
      apply (rule span_setsum[OF fS])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   950
      using span_mono[OF SP]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   951
      by (auto intro: span_superset span_mul)}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   952
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   953
  have "\<forall>x \<in> span P. x \<in> ?E"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   954
  proof(rule span_induct_alt')
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   955
    show "0 \<in> Collect ?h"
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   956
      unfolding mem_Collect_eq
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   957
      apply (rule exI[where x="{}"]) by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   958
  next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   959
    fix c x y
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   960
    assume x: "x \<in> P" and hy: "y \<in> Collect ?h"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   961
    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
   962
      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
   963
    let ?S = "insert x S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   964
    let ?u = "\<lambda>y. if y = x then (if x \<in> S then u y + c else c)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   965
                  else u y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   966
    from fS SP x have th0: "finite (insert x S)" "insert x S \<subseteq> P" by blast+
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   967
    {assume xS: "x \<in> S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   968
      have S1: "S = (S - {x}) \<union> {x}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   969
        and Sss:"finite (S - {x})" "finite {x}" "(S -{x}) \<inter> {x} = {}" using xS fS by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   970
      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"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   971
        using xS
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   972
        by (simp add: setsum_Un_disjoint[OF Sss, unfolded S1[symmetric]]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   973
          setsum_clauses(2)[OF fS] cong del: if_weak_cong)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   974
      also have "\<dots> = (\<Sum>v\<in>S. u v *\<^sub>R v) + c *\<^sub>R x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   975
        apply (simp add: setsum_Un_disjoint[OF Sss, unfolded S1[symmetric]])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   976
        by (simp add: algebra_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   977
      also have "\<dots> = c*\<^sub>R x + y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   978
        by (simp add: add_commute u)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   979
      finally have "setsum (\<lambda>v. ?u v *\<^sub>R v) ?S = c*\<^sub>R x + y" .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   980
    then have "?Q ?S ?u (c*\<^sub>R x + y)" using th0 by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   981
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   982
  {assume xS: "x \<notin> S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   983
    have th00: "(\<Sum>v\<in>S. (if v = x then c else u v) *\<^sub>R v) = y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   984
      unfolding u[symmetric]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   985
      apply (rule setsum_cong2)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   986
      using xS by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   987
    have "?Q ?S ?u (c*\<^sub>R x + y)" using fS xS th0
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   988
      by (simp add: th00 setsum_clauses add_commute cong del: if_weak_cong)}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   989
  ultimately have "?Q ?S ?u (c*\<^sub>R x + y)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   990
    by (cases "x \<in> S", simp, simp)
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   991
    then show "(c*\<^sub>R x + y) \<in> Collect ?h"
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
   992
      unfolding mem_Collect_eq
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   993
      apply -
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   994
      apply (rule exI[where x="?S"])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   995
      apply (rule exI[where x="?u"]) by metis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   996
  qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   997
  ultimately show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   998
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
   999
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1000
lemma dependent_explicit:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1001
  "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))" (is "?lhs = ?rhs")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1002
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1003
  {assume dP: "dependent P"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1004
    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
  1005
      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
  1006
      unfolding dependent_def span_explicit by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1007
    let ?S = "insert a S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1008
    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
  1009
    let ?v = a
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1010
    from aP SP have aS: "a \<notin> S" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1011
    from fS SP aP have th0: "finite ?S" "?S \<subseteq> P" "?v \<in> ?S" "?u ?v \<noteq> 0" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1012
    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
  1013
      using fS aS
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1014
      apply (simp add: setsum_clauses field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1015
      apply (subst (2) ua[symmetric])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1016
      apply (rule setsum_cong2)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1017
      by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1018
    with th0 have ?rhs
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1019
      apply -
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1020
      apply (rule exI[where x= "?S"])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1021
      apply (rule exI[where x= "?u"])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1022
      by clarsimp}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1023
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1024
  {fix S u v assume fS: "finite S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1025
      and SP: "S \<subseteq> P" and vS: "v \<in> S" and uv: "u v \<noteq> 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1026
    and u: "setsum (\<lambda>v. u v *\<^sub>R v) S = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1027
    let ?a = v
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1028
    let ?S = "S - {v}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1029
    let ?u = "\<lambda>i. (- u i) / u v"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1030
    have th0: "?a \<in> P" "finite ?S" "?S \<subseteq> P"       using fS SP vS by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1031
    have "setsum (\<lambda>v. ?u v *\<^sub>R v) ?S = setsum (\<lambda>v. (- (inverse (u ?a))) *\<^sub>R (u v *\<^sub>R v)) S - ?u v *\<^sub>R v"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1032
      using fS vS uv
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1033
      by (simp add: setsum_diff1 divide_inverse field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1034
    also have "\<dots> = ?a"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1035
      unfolding scaleR_right.setsum [symmetric] u
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1036
      using uv by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1037
    finally  have "setsum (\<lambda>v. ?u v *\<^sub>R v) ?S = ?a" .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1038
    with th0 have ?lhs
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1039
      unfolding dependent_def span_explicit
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1040
      apply -
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1041
      apply (rule bexI[where x= "?a"])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1042
      apply (simp_all del: scaleR_minus_left)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1043
      apply (rule exI[where x= "?S"])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1044
      by (auto simp del: scaleR_minus_left)}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1045
  ultimately show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1046
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1047
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1048
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1049
lemma span_finite:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1050
  assumes fS: "finite S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1051
  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
  1052
  (is "_ = ?rhs")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1053
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1054
  {fix y assume y: "y \<in> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1055
    from y obtain S' u where fS': "finite S'" and SS': "S' \<subseteq> S" and
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1056
      u: "setsum (\<lambda>v. u v *\<^sub>R v) S' = y" unfolding span_explicit by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1057
    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
  1058
    have "setsum (\<lambda>v. ?u v *\<^sub>R v) S = setsum (\<lambda>v. u v *\<^sub>R v) S'"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1059
      using SS' fS by (auto intro!: setsum_mono_zero_cong_right)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1060
    hence "setsum (\<lambda>v. ?u v *\<^sub>R v) S = y" by (metis u)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1061
    hence "y \<in> ?rhs" by auto}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1062
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1063
  {fix y u assume u: "setsum (\<lambda>v. u v *\<^sub>R v) S = y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1064
    then have "y \<in> span S" using fS unfolding span_explicit by auto}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1065
  ultimately show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1066
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1067
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1068
text {* This is useful for building a basis step-by-step. *}
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 independent_insert:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1071
  "independent(insert a S) \<longleftrightarrow>
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1072
      (if a \<in> S then independent S
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1073
                else independent S \<and> a \<notin> span S)" (is "?lhs \<longleftrightarrow> ?rhs")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1074
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1075
  {assume aS: "a \<in> S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1076
    hence ?thesis using insert_absorb[OF aS] by simp}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1077
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1078
  {assume aS: "a \<notin> S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1079
    {assume i: ?lhs
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1080
      then have ?rhs using aS
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1081
        apply simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1082
        apply (rule conjI)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1083
        apply (rule independent_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1084
        apply assumption
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1085
        apply blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1086
        by (simp add: dependent_def)}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1087
    moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1088
    {assume i: ?rhs
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1089
      have ?lhs using i aS
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1090
        apply simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1091
        apply (auto simp add: dependent_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1092
        apply (case_tac "aa = a", auto)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1093
        apply (subgoal_tac "insert a S - {aa} = insert a (S - {aa})")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1094
        apply simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1095
        apply (subgoal_tac "a \<in> span (insert aa (S - {aa}))")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1096
        apply (subgoal_tac "insert aa (S - {aa}) = S")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1097
        apply simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1098
        apply blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1099
        apply (rule in_span_insert)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1100
        apply assumption
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1101
        apply blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1102
        apply blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1103
        done}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1104
    ultimately have ?thesis by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1105
  ultimately show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1106
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1107
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1108
text {* The degenerate case of the Exchange Lemma. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1109
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1110
lemma mem_delete: "x \<in> (A - {a}) \<longleftrightarrow> x \<noteq> a \<and> x \<in> A"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1111
  by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1112
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1113
lemma spanning_subset_independent:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1114
  assumes BA: "B \<subseteq> A" and iA: "independent A"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1115
  and AsB: "A \<subseteq> span B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1116
  shows "A = B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1117
proof
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1118
  from BA show "B \<subseteq> A" .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1119
next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1120
  from span_mono[OF BA] span_mono[OF AsB]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1121
  have sAB: "span A = span B" unfolding span_span by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1122
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1123
  {fix x assume x: "x \<in> A"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1124
    from iA have th0: "x \<notin> span (A - {x})"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1125
      unfolding dependent_def using x by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1126
    from x have xsA: "x \<in> span A" by (blast intro: span_superset)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1127
    have "A - {x} \<subseteq> A" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1128
    hence th1:"span (A - {x}) \<subseteq> span A" by (metis span_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1129
    {assume xB: "x \<notin> B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1130
      from xB BA have "B \<subseteq> A -{x}" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1131
      hence "span B \<subseteq> span (A - {x})" by (metis span_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1132
      with th1 th0 sAB have "x \<notin> span A" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1133
      with x have False by (metis span_superset)}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1134
    then have "x \<in> B" by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1135
  then show "A \<subseteq> B" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1136
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1137
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1138
text {* The general case of the Exchange Lemma, the key to what follows. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1139
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1140
lemma exchange_lemma:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1141
  assumes f:"finite t" and i: "independent s"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1142
  and sp:"s \<subseteq> span t"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1143
  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'"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1144
using f i sp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1145
proof(induct "card (t - s)" arbitrary: s t rule: less_induct)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1146
  case less
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1147
  note ft = `finite t` and s = `independent s` and sp = `s \<subseteq> span t`
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1148
  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'"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1149
  let ?ths = "\<exists>t'. ?P t'"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1150
  {assume st: "s \<subseteq> t"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1151
    from st ft span_mono[OF st] have ?ths apply - apply (rule exI[where x=t])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1152
      by (auto intro: span_superset)}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1153
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1154
  {assume st: "t \<subseteq> s"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1155
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1156
    from spanning_subset_independent[OF st s sp]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1157
      st ft span_mono[OF st] have ?ths apply - apply (rule exI[where x=t])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1158
      by (auto intro: span_superset)}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1159
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1160
  {assume st: "\<not> s \<subseteq> t" "\<not> t \<subseteq> s"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1161
    from st(2) obtain b where b: "b \<in> t" "b \<notin> s" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1162
      from b have "t - {b} - s \<subset> t - s" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1163
      then have cardlt: "card (t - {b} - s) < card (t - s)" using ft
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1164
        by (auto intro: psubset_card_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1165
      from b ft have ct0: "card t \<noteq> 0" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1166
    {assume stb: "s \<subseteq> span(t -{b})"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1167
      from ft have ftb: "finite (t -{b})" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1168
      from less(1)[OF cardlt ftb s stb]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1169
      obtain u where u: "card u = card (t-{b})" "s \<subseteq> u" "u \<subseteq> s \<union> (t - {b})" "s \<subseteq> span u" and fu: "finite u" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1170
      let ?w = "insert b u"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1171
      have th0: "s \<subseteq> insert b u" using u by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1172
      from u(3) b have "u \<subseteq> s \<union> t" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1173
      then have th1: "insert b u \<subseteq> s \<union> t" using u b by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1174
      have bu: "b \<notin> u" using b u by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1175
      from u(1) ft b have "card u = (card t - 1)" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1176
      then
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1177
      have th2: "card (insert b u) = card t"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1178
        using card_insert_disjoint[OF fu bu] ct0 by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1179
      from u(4) have "s \<subseteq> span u" .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1180
      also have "\<dots> \<subseteq> span (insert b u)" apply (rule span_mono) by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1181
      finally have th3: "s \<subseteq> span (insert b u)" .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1182
      from th0 th1 th2 th3 fu have th: "?P ?w"  by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1183
      from th have ?ths by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1184
    moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1185
    {assume stb: "\<not> s \<subseteq> span(t -{b})"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1186
      from stb obtain a where a: "a \<in> s" "a \<notin> span (t - {b})" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1187
      have ab: "a \<noteq> b" using a b by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1188
      have at: "a \<notin> t" using a ab span_superset[of a "t- {b}"] by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1189
      have mlt: "card ((insert a (t - {b})) - s) < card (t - s)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1190
        using cardlt ft a b by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1191
      have ft': "finite (insert a (t - {b}))" using ft by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1192
      {fix x assume xs: "x \<in> s"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1193
        have t: "t \<subseteq> (insert b (insert a (t -{b})))" using b by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1194
        from b(1) have "b \<in> span t" by (simp add: span_superset)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1195
        have bs: "b \<in> span (insert a (t - {b}))" apply(rule in_span_delete)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1196
          using  a sp unfolding subset_eq by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1197
        from xs sp have "x \<in> span t" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1198
        with span_mono[OF t]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1199
        have x: "x \<in> span (insert b (insert a (t - {b})))" ..
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1200
        from span_trans[OF bs x] have "x \<in> span (insert a (t - {b}))"  .}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1201
      then have sp': "s \<subseteq> span (insert a (t - {b}))" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1202
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1203
      from less(1)[OF mlt ft' s sp'] obtain u where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1204
        u: "card u = card (insert a (t -{b}))" "finite u" "s \<subseteq> u" "u \<subseteq> s \<union> insert a (t -{b})"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1205
        "s \<subseteq> span u" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1206
      from u a b ft at ct0 have "?P u" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1207
      then have ?ths by blast }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1208
    ultimately have ?ths by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1209
  }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1210
  ultimately
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1211
  show ?ths  by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1212
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1213
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1214
text {* This implies corresponding size bounds. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1215
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1216
lemma independent_span_bound:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1217
  assumes f: "finite t" and i: "independent s" and sp:"s \<subseteq> span t"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1218
  shows "finite s \<and> card s \<le> card t"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1219
  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
  1220
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1221
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1222
lemma finite_Atleast_Atmost_nat[simp]: "finite {f x |x. x\<in> (UNIV::'a::finite set)}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1223
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1224
  have eq: "{f x |x. x\<in> UNIV} = f ` UNIV" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1225
  show ?thesis unfolding eq
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1226
    apply (rule finite_imageI)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1227
    apply (rule finite)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1228
    done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1229
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1230
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1231
subsection{* Euclidean Spaces as Typeclass*}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1232
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1233
lemma independent_eq_inj_on:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1234
  fixes D :: nat and f :: "nat \<Rightarrow> 'c::real_vector" assumes *: "inj_on f {..<D}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1235
  shows "independent (f ` {..<D}) \<longleftrightarrow> (\<forall>a u. a < D \<longrightarrow> (\<Sum>i\<in>{..<D}-{a}. u (f i) *\<^sub>R f i) \<noteq> f a)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1236
proof -
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1237
  from * have eq: "\<And>i. i < D \<Longrightarrow> f ` {..<D} - {f i} = f`({..<D} - {i})"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1238
    and inj: "\<And>i. inj_on f ({..<D} - {i})"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1239
    by (auto simp: inj_on_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1240
  have *: "\<And>i. finite (f ` {..<D} - {i})" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1241
  show ?thesis unfolding dependent_def span_finite[OF *]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1242
    by (auto simp: eq setsum_reindex[OF inj])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1243
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1244
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1245
lemma independent_basis:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1246
  "independent (basis ` {..<DIM('a)} :: 'a::euclidean_space set)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1247
  unfolding independent_eq_inj_on [OF basis_inj]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1248
  apply clarify
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1249
  apply (drule_tac f="inner (basis a)" in arg_cong)
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44176
diff changeset
  1250
  apply (simp add: inner_setsum_right dot_basis)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1251
  done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1252
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1253
lemma (in euclidean_space) range_basis:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1254
    "range basis = insert 0 (basis ` {..<DIM('a)})"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1255
proof -
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1256
  have *: "UNIV = {..<DIM('a)} \<union> {DIM('a)..}" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1257
  show ?thesis unfolding * image_Un basis_finite by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1258
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1259
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1260
lemma (in euclidean_space) range_basis_finite[intro]:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1261
    "finite (range basis)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1262
  unfolding range_basis by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1263
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1264
lemma span_basis: "span (range basis) = (UNIV :: 'a::euclidean_space set)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1265
proof -
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1266
  { fix x :: 'a
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1267
    have "(\<Sum>i<DIM('a). (x $$ i) *\<^sub>R basis i) \<in> span (range basis :: 'a set)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1268
      by (simp add: span_setsum span_mul span_superset)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1269
    hence "x \<in> span (range basis)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1270
      by (simp only: euclidean_representation [symmetric])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1271
  } thus ?thesis by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1272
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1273
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1274
lemma basis_representation:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1275
  "\<exists>u. x = (\<Sum>v\<in>basis ` {..<DIM('a)}. u v *\<^sub>R (v\<Colon>'a\<Colon>euclidean_space))"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1276
proof -
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1277
  have "x\<in>UNIV" by auto from this[unfolded span_basis[THEN sym]]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1278
  have "\<exists>u. (\<Sum>v\<in>basis ` {..<DIM('a)}. u v *\<^sub>R v) = x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1279
    unfolding range_basis span_insert_0 apply(subst (asm) span_finite) by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1280
  thus ?thesis by fastsimp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1281
qed
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 span_basis'[simp]:"span ((basis::nat=>'a) ` {..<DIM('a::euclidean_space)}) = UNIV"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1284
  apply(subst span_basis[symmetric]) unfolding range_basis by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1285
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1286
lemma card_basis[simp]:"card ((basis::nat=>'a) ` {..<DIM('a::euclidean_space)}) = DIM('a)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1287
  apply(subst card_image) using basis_inj by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1288
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1289
lemma in_span_basis: "(x::'a::euclidean_space) \<in> span (basis ` {..<DIM('a)})"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1290
  unfolding span_basis' ..
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1291
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1292
lemma norm_bound_component_le: "norm (x::'a::euclidean_space) \<le> e \<Longrightarrow> \<bar>x$$i\<bar> <= e"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1293
  by (metis component_le_norm order_trans)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1294
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1295
lemma norm_bound_component_lt: "norm (x::'a::euclidean_space) < e \<Longrightarrow> \<bar>x$$i\<bar> < e"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1296
  by (metis component_le_norm basic_trans_rules(21))
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1297
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1298
lemma norm_le_l1: "norm (x::'a::euclidean_space) \<le> (\<Sum>i<DIM('a). \<bar>x $$ i\<bar>)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1299
  apply (subst euclidean_representation[of x])
44176
eda112e9cdee remove redundant lemma setsum_norm in favor of norm_setsum;
huffman
parents: 44170
diff changeset
  1300
  apply (rule order_trans[OF norm_setsum])
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1301
  by (auto intro!: setsum_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1302
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1303
lemma setsum_norm_allsubsets_bound:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1304
  fixes f:: "'a \<Rightarrow> 'n::euclidean_space"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1305
  assumes fP: "finite P" and fPs: "\<And>Q. Q \<subseteq> P \<Longrightarrow> norm (setsum f Q) \<le> e"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1306
  shows "setsum (\<lambda>x. norm (f x)) P \<le> 2 * real DIM('n) *  e"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1307
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1308
  let ?d = "real DIM('n)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1309
  let ?nf = "\<lambda>x. norm (f x)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1310
  let ?U = "{..<DIM('n)}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1311
  have th0: "setsum (\<lambda>x. setsum (\<lambda>i. \<bar>f x $$ i\<bar>) ?U) P = setsum (\<lambda>i. setsum (\<lambda>x. \<bar>f x $$ i\<bar>) P) ?U"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1312
    by (rule setsum_commute)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1313
  have th1: "2 * ?d * e = of_nat (card ?U) * (2 * e)" by (simp add: real_of_nat_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1314
  have "setsum ?nf P \<le> setsum (\<lambda>x. setsum (\<lambda>i. \<bar>f x $$ i\<bar>) ?U) P"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1315
    apply (rule setsum_mono)    by (rule norm_le_l1)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1316
  also have "\<dots> \<le> 2 * ?d * e"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1317
    unfolding th0 th1
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1318
  proof(rule setsum_bounded)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1319
    fix i assume i: "i \<in> ?U"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1320
    let ?Pp = "{x. x\<in> P \<and> f x $$ i \<ge> 0}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1321
    let ?Pn = "{x. x \<in> P \<and> f x $$ i < 0}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1322
    have thp: "P = ?Pp \<union> ?Pn" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1323
    have thp0: "?Pp \<inter> ?Pn ={}" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1324
    have PpP: "?Pp \<subseteq> P" and PnP: "?Pn \<subseteq> P" by blast+
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1325
    have Ppe:"setsum (\<lambda>x. \<bar>f x $$ i\<bar>) ?Pp \<le> e"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1326
      using component_le_norm[of "setsum (\<lambda>x. f x) ?Pp" i]  fPs[OF PpP]
44457
d366fa5551ef declare euclidean_simps [simp] at the point they are proved;
huffman
parents: 44454
diff changeset
  1327
      by(auto intro: abs_le_D1)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1328
    have Pne: "setsum (\<lambda>x. \<bar>f x $$ i\<bar>) ?Pn \<le> e"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1329
      using component_le_norm[of "setsum (\<lambda>x. - f x) ?Pn" i]  fPs[OF PnP]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1330
      by(auto simp add: setsum_negf intro: abs_le_D1)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1331
    have "setsum (\<lambda>x. \<bar>f x $$ i\<bar>) P = setsum (\<lambda>x. \<bar>f x $$ i\<bar>) ?Pp + setsum (\<lambda>x. \<bar>f x $$ i\<bar>) ?Pn"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1332
      apply (subst thp)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1333
      apply (rule setsum_Un_zero)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1334
      using fP thp0 by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1335
    also have "\<dots> \<le> 2*e" using Pne Ppe by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1336
    finally show "setsum (\<lambda>x. \<bar>f x $$ i\<bar>) P \<le> 2*e" .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1337
  qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1338
  finally show ?thesis .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1339
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1340
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1341
lemma choice_iff': "(\<forall>x<d. \<exists>y. P x y) \<longleftrightarrow> (\<exists>f. \<forall>x<d. P x (f x))" by metis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1342
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1343
lemma lambda_skolem': "(\<forall>i<DIM('a::euclidean_space). \<exists>x. P i x) \<longleftrightarrow>
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1344
   (\<exists>x::'a. \<forall>i<DIM('a). P i (x$$i))" (is "?lhs \<longleftrightarrow> ?rhs")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1345
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1346
  let ?S = "{..<DIM('a)}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1347
  {assume H: "?rhs"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1348
    then have ?lhs by auto}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1349
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1350
  {assume H: "?lhs"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1351
    then obtain f where f:"\<forall>i<DIM('a). P i (f i)" unfolding choice_iff' by metis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1352
    let ?x = "(\<chi>\<chi> i. (f i)) :: 'a"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1353
    {fix i assume i:"i<DIM('a)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1354
      with f have "P i (f i)" by metis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1355
      then have "P i (?x$$i)" using i by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1356
    }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1357
    hence "\<forall>i<DIM('a). P i (?x$$i)" by metis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1358
    hence ?rhs by metis }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1359
  ultimately show ?thesis by metis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1360
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1361
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1362
subsection {* Linearity and Bilinearity continued *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1363
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1364
lemma linear_bounded:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1365
  fixes f:: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1366
  assumes lf: "linear f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1367
  shows "\<exists>B. \<forall>x. norm (f x) \<le> B * norm x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1368
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1369
  let ?S = "{..<DIM('a)}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1370
  let ?B = "setsum (\<lambda>i. norm(f(basis i))) ?S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1371
  have fS: "finite ?S" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1372
  {fix x:: "'a"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1373
    let ?g = "(\<lambda> i. (x$$i) *\<^sub>R (basis i) :: 'a)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1374
    have "norm (f x) = norm (f (setsum (\<lambda>i. (x$$i) *\<^sub>R (basis i)) ?S))"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1375
      apply(subst euclidean_representation[of x]) ..
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1376
    also have "\<dots> = norm (setsum (\<lambda> i. (x$$i) *\<^sub>R f (basis i)) ?S)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1377
      using linear_setsum[OF lf fS, of ?g, unfolded o_def] linear_cmul[OF lf] by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1378
    finally have th0: "norm (f x) = norm (setsum (\<lambda>i. (x$$i) *\<^sub>R f (basis i))?S)" .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1379
    {fix i assume i: "i \<in> ?S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1380
      from component_le_norm[of x i]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1381
      have "norm ((x$$i) *\<^sub>R f (basis i :: 'a)) \<le> norm (f (basis i)) * norm x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1382
      unfolding norm_scaleR
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1383
      apply (simp only: mult_commute)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1384
      apply (rule mult_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1385
      by (auto simp add: field_simps) }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1386
    then have th: "\<forall>i\<in> ?S. norm ((x$$i) *\<^sub>R f (basis i :: 'a)) \<le> norm (f (basis i)) * norm x" by metis
44176
eda112e9cdee remove redundant lemma setsum_norm in favor of norm_setsum;
huffman
parents: 44170
diff changeset
  1387
    from setsum_norm_le[of _ "\<lambda>i. (x$$i) *\<^sub>R (f (basis i))", OF th]
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1388
    have "norm (f x) \<le> ?B * norm x" unfolding th0 setsum_left_distrib by metis}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1389
  then show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1390
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1391
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1392
lemma linear_bounded_pos:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1393
  fixes f:: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1394
  assumes lf: "linear f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1395
  shows "\<exists>B > 0. \<forall>x. norm (f x) \<le> B * norm x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1396
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1397
  from linear_bounded[OF lf] obtain B where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1398
    B: "\<forall>x. norm (f x) \<le> B * norm x" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1399
  let ?K = "\<bar>B\<bar> + 1"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1400
  have Kp: "?K > 0" by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1401
    { assume C: "B < 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1402
      have "((\<chi>\<chi> i. 1)::'a) \<noteq> 0" unfolding euclidean_eq[where 'a='a]
44286
8766839efb1b declare euclidean_component_zero[simp] at the point it is proved
huffman
parents: 44282
diff changeset
  1403
        by(auto intro!:exI[where x=0])
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1404
      hence "norm ((\<chi>\<chi> i. 1)::'a) > 0" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1405
      with C have "B * norm ((\<chi>\<chi> i. 1)::'a) < 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1406
        by (simp add: mult_less_0_iff)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1407
      with B[rule_format, of "(\<chi>\<chi> i. 1)::'a"] norm_ge_zero[of "f ((\<chi>\<chi> i. 1)::'a)"] have False by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1408
    }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1409
    then have Bp: "B \<ge> 0" by (metis not_leE)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1410
    {fix x::"'a"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1411
      have "norm (f x) \<le> ?K *  norm x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1412
      using B[rule_format, of x] norm_ge_zero[of x] norm_ge_zero[of "f x"] Bp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1413
      apply (auto simp add: field_simps split add: abs_split)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1414
      apply (erule order_trans, simp)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1415
      done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1416
  }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1417
  then show ?thesis using Kp by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1418
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1419
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1420
lemma linear_conv_bounded_linear:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1421
  fixes f :: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1422
  shows "linear f \<longleftrightarrow> bounded_linear f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1423
proof
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1424
  assume "linear f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1425
  show "bounded_linear f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1426
  proof
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1427
    fix x y show "f (x + y) = f x + f y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1428
      using `linear f` unfolding linear_def by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1429
  next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1430
    fix r x show "f (scaleR r x) = scaleR r (f x)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1431
      using `linear f` unfolding linear_def by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1432
  next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1433
    have "\<exists>B. \<forall>x. norm (f x) \<le> B * norm x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1434
      using `linear f` by (rule linear_bounded)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1435
    thus "\<exists>K. \<forall>x. norm (f x) \<le> norm x * K"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1436
      by (simp add: mult_commute)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1437
  qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1438
next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1439
  assume "bounded_linear f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1440
  then interpret f: bounded_linear f .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1441
  show "linear f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1442
    by (simp add: f.add f.scaleR linear_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1443
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1444
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1445
lemma bounded_linearI': fixes f::"'a::euclidean_space \<Rightarrow> 'b::real_normed_vector"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1446
  assumes "\<And>x y. f (x + y) = f x + f y" "\<And>c x. f (c *\<^sub>R x) = c *\<^sub>R f x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1447
  shows "bounded_linear f" unfolding linear_conv_bounded_linear[THEN sym]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1448
  by(rule linearI[OF assms])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1449
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1450
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1451
lemma bilinear_bounded:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1452
  fixes h:: "'m::euclidean_space \<Rightarrow> 'n::euclidean_space \<Rightarrow> 'k::real_normed_vector"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1453
  assumes bh: "bilinear h"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1454
  shows "\<exists>B. \<forall>x y. norm (h x y) \<le> B * norm x * norm y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1455
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1456
  let ?M = "{..<DIM('m)}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1457
  let ?N = "{..<DIM('n)}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1458
  let ?B = "setsum (\<lambda>(i,j). norm (h (basis i) (basis j))) (?M \<times> ?N)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1459
  have fM: "finite ?M" and fN: "finite ?N" by simp_all
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1460
  {fix x:: "'m" and  y :: "'n"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1461
    have "norm (h x y) = norm (h (setsum (\<lambda>i. (x$$i) *\<^sub>R basis i) ?M) (setsum (\<lambda>i. (y$$i) *\<^sub>R basis i) ?N))" 
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1462
      apply(subst euclidean_representation[where 'a='m])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1463
      apply(subst euclidean_representation[where 'a='n]) ..
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1464
    also have "\<dots> = norm (setsum (\<lambda> (i,j). h ((x$$i) *\<^sub>R basis i) ((y$$j) *\<^sub>R basis j)) (?M \<times> ?N))"  
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1465
      unfolding bilinear_setsum[OF bh fM fN] ..
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1466
    finally have th: "norm (h x y) = \<dots>" .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1467
    have "norm (h x y) \<le> ?B * norm x * norm y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1468
      apply (simp add: setsum_left_distrib th)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1469
      apply (rule setsum_norm_le)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1470
      using fN fM
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1471
      apply simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1472
      apply (auto simp add: bilinear_rmul[OF bh] bilinear_lmul[OF bh] field_simps simp del: scaleR_scaleR)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1473
      apply (rule mult_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1474
      apply (auto simp add: zero_le_mult_iff component_le_norm)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1475
      apply (rule mult_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1476
      apply (auto simp add: zero_le_mult_iff component_le_norm)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1477
      done}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1478
  then show ?thesis by metis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1479
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1480
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1481
lemma bilinear_bounded_pos:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1482
  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
  1483
  assumes bh: "bilinear h"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1484
  shows "\<exists>B > 0. \<forall>x y. norm (h x y) \<le> B * norm x * norm y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1485
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1486
  from bilinear_bounded[OF bh] obtain B where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1487
    B: "\<forall>x y. norm (h x y) \<le> B * norm x * norm y" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1488
  let ?K = "\<bar>B\<bar> + 1"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1489
  have Kp: "?K > 0" by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1490
  have KB: "B < ?K" by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1491
  {fix x::'a and y::'b
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1492
    from KB Kp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1493
    have "B * norm x * norm y \<le> ?K * norm x * norm y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1494
      apply -
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1495
      apply (rule mult_right_mono, rule mult_right_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1496
      by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1497
    then have "norm (h x y) \<le> ?K * norm x * norm y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1498
      using B[rule_format, of x y] by simp}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1499
  with Kp show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1500
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1501
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1502
lemma bilinear_conv_bounded_bilinear:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1503
  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
  1504
  shows "bilinear h \<longleftrightarrow> bounded_bilinear h"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1505
proof
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1506
  assume "bilinear h"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1507
  show "bounded_bilinear h"
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
    fix x y z show "h (x + y) z = h x z + h y z"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1510
      using `bilinear h` unfolding bilinear_def linear_def by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1511
  next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1512
    fix x y z show "h x (y + z) = h x y + h x z"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1513
      using `bilinear h` unfolding bilinear_def linear_def by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1514
  next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1515
    fix r x y show "h (scaleR r x) y = scaleR r (h x y)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1516
      using `bilinear h` unfolding bilinear_def linear_def
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1517
      by simp
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
    fix r x y show "h x (scaleR r y) = scaleR r (h x y)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1520
      using `bilinear h` unfolding bilinear_def linear_def
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1521
      by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1522
  next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1523
    have "\<exists>B. \<forall>x y. norm (h x y) \<le> B * norm x * norm y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1524
      using `bilinear h` by (rule bilinear_bounded)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1525
    thus "\<exists>K. \<forall>x y. norm (h x y) \<le> norm x * norm y * K"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1526
      by (simp add: mult_ac)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1527
  qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1528
next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1529
  assume "bounded_bilinear h"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1530
  then interpret h: bounded_bilinear h .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1531
  show "bilinear h"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1532
    unfolding bilinear_def linear_conv_bounded_linear
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1533
    using h.bounded_linear_left h.bounded_linear_right
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1534
    by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1535
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1536
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1537
subsection {* We continue. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1538
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1539
lemma independent_bound:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1540
  fixes S:: "('a::euclidean_space) set"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1541
  shows "independent S \<Longrightarrow> finite S \<and> card S <= DIM('a::euclidean_space)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1542
  using independent_span_bound[of "(basis::nat=>'a) ` {..<DIM('a)}" S] by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1543
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1544
lemma dependent_biggerset: "(finite (S::('a::euclidean_space) set) ==> card S > DIM('a)) ==> dependent S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1545
  by (metis independent_bound not_less)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1546
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1547
text {* Hence we can create a maximal independent subset. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1548
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1549
lemma maximal_independent_subset_extend:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1550
  assumes sv: "(S::('a::euclidean_space) set) \<subseteq> V" and iS: "independent S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1551
  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
  1552
  using sv iS
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1553
proof(induct "DIM('a) - card S" arbitrary: S rule: less_induct)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1554
  case less
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1555
  note sv = `S \<subseteq> V` and i = `independent S`
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1556
  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
  1557
  let ?ths = "\<exists>x. ?P x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1558
  let ?d = "DIM('a)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1559
  {assume "V \<subseteq> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1560
    then have ?ths  using sv i by blast }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1561
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1562
  {assume VS: "\<not> V \<subseteq> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1563
    from VS obtain a where a: "a \<in> V" "a \<notin> span S" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1564
    from a have aS: "a \<notin> S" by (auto simp add: span_superset)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1565
    have th0: "insert a S \<subseteq> V" using a sv by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1566
    from independent_insert[of a S]  i a
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1567
    have th1: "independent (insert a S)" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1568
    have mlt: "?d - card (insert a S) < ?d - card S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1569
      using aS a independent_bound[OF th1]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1570
      by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1571
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1572
    from less(1)[OF mlt th0 th1]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1573
    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
  1574
      by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1575
    from B have "?P B" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1576
    then have ?ths by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1577
  ultimately show ?ths by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1578
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1579
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1580
lemma maximal_independent_subset:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1581
  "\<exists>(B:: ('a::euclidean_space) set). B\<subseteq> V \<and> independent B \<and> V \<subseteq> span B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1582
  by (metis maximal_independent_subset_extend[of "{}:: ('a::euclidean_space) set"] empty_subsetI independent_empty)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1583
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1584
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1585
text {* Notion of dimension. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1586
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1587
definition "dim V = (SOME n. \<exists>B. B \<subseteq> V \<and> independent B \<and> V \<subseteq> span B \<and> (card B = n))"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1588
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1589
lemma basis_exists:  "\<exists>B. (B :: ('a::euclidean_space) set) \<subseteq> V \<and> independent B \<and> V \<subseteq> span B \<and> (card B = dim V)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1590
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)"]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1591
using maximal_independent_subset[of V] independent_bound
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1592
by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1593
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1594
text {* Consequences of independence or spanning for cardinality. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1595
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1596
lemma independent_card_le_dim: 
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1597
  assumes "(B::('a::euclidean_space) set) \<subseteq> V" and "independent B" shows "card B \<le> dim V"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1598
proof -
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1599
  from basis_exists[of V] `B \<subseteq> V`
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1600
  obtain B' where "independent B'" and "B \<subseteq> span B'" and "card B' = dim V" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1601
  with independent_span_bound[OF _ `independent B` `B \<subseteq> span B'`] independent_bound[of B']
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1602
  show ?thesis by auto
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
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1605
lemma span_card_ge_dim:  "(B::('a::euclidean_space) set) \<subseteq> V \<Longrightarrow> V \<subseteq> span B \<Longrightarrow> finite B \<Longrightarrow> dim V \<le> card B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1606
  by (metis basis_exists[of V] independent_span_bound subset_trans)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1607
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1608
lemma basis_card_eq_dim:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1609
  "B \<subseteq> (V:: ('a::euclidean_space) set) \<Longrightarrow> V \<subseteq> span B \<Longrightarrow> independent B \<Longrightarrow> finite B \<and> card B = dim V"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1610
  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
  1611
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1612
lemma dim_unique: "(B::('a::euclidean_space) set) \<subseteq> V \<Longrightarrow> V \<subseteq> span B \<Longrightarrow> independent B \<Longrightarrow> card B = n \<Longrightarrow> dim V = n"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1613
  by (metis basis_card_eq_dim)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1614
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1615
text {* More lemmas about dimension. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1616
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1617
lemma dim_UNIV: "dim (UNIV :: ('a::euclidean_space) set) = DIM('a)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1618
  apply (rule dim_unique[of "(basis::nat=>'a) ` {..<DIM('a)}"])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1619
  using independent_basis by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1620
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1621
lemma dim_subset:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1622
  "(S:: ('a::euclidean_space) set) \<subseteq> T \<Longrightarrow> dim S \<le> dim T"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1623
  using basis_exists[of T] basis_exists[of S]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1624
  by (metis independent_card_le_dim subset_trans)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1625
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1626
lemma dim_subset_UNIV: "dim (S:: ('a::euclidean_space) set) \<le> DIM('a)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1627
  by (metis dim_subset subset_UNIV dim_UNIV)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1628
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1629
text {* Converses to those. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1630
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1631
lemma card_ge_dim_independent:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1632
  assumes BV:"(B::('a::euclidean_space) set) \<subseteq> V" and iB:"independent B" and dVB:"dim V \<le> card B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1633
  shows "V \<subseteq> span B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1634
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1635
  {fix a assume aV: "a \<in> V"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1636
    {assume aB: "a \<notin> span B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1637
      then have iaB: "independent (insert a B)" using iB aV  BV by (simp add: independent_insert)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1638
      from aV BV have th0: "insert a B \<subseteq> V" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1639
      from aB have "a \<notin>B" by (auto simp add: span_superset)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1640
      with independent_card_le_dim[OF th0 iaB] dVB independent_bound[OF iB] have False by auto }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1641
    then have "a \<in> span B"  by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1642
  then show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1643
qed
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 card_le_dim_spanning:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1646
  assumes BV: "(B:: ('a::euclidean_space) set) \<subseteq> V" and VB: "V \<subseteq> span B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1647
  and fB: "finite B" and dVB: "dim V \<ge> card B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1648
  shows "independent B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1649
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1650
  {fix a assume a: "a \<in> B" "a \<in> span (B -{a})"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1651
    from a fB have c0: "card B \<noteq> 0" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1652
    from a fB have cb: "card (B -{a}) = card B - 1" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1653
    from BV a have th0: "B -{a} \<subseteq> V" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1654
    {fix x assume x: "x \<in> V"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1655
      from a have eq: "insert a (B -{a}) = B" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1656
      from x VB have x': "x \<in> span B" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1657
      from span_trans[OF a(2), unfolded eq, OF x']
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1658
      have "x \<in> span (B -{a})" . }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1659
    then have th1: "V \<subseteq> span (B -{a})" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1660
    have th2: "finite (B -{a})" using fB by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1661
    from span_card_ge_dim[OF th0 th1 th2]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1662
    have c: "dim V \<le> card (B -{a})" .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1663
    from c c0 dVB cb have False by simp}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1664
  then show ?thesis unfolding dependent_def by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1665
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1666
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1667
lemma card_eq_dim: "(B:: ('a::euclidean_space) set) \<subseteq> V \<Longrightarrow> card B = dim V \<Longrightarrow> finite B \<Longrightarrow> independent B \<longleftrightarrow> V \<subseteq> span B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1668
  by (metis order_eq_iff card_le_dim_spanning
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1669
    card_ge_dim_independent)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1670
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1671
text {* More general size bound lemmas. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1672
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1673
lemma independent_bound_general:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1674
  "independent (S:: ('a::euclidean_space) set) \<Longrightarrow> finite S \<and> card S \<le> dim S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1675
  by (metis independent_card_le_dim independent_bound subset_refl)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1676
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1677
lemma dependent_biggerset_general: "(finite (S:: ('a::euclidean_space) set) \<Longrightarrow> card S > dim S) \<Longrightarrow> dependent S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1678
  using independent_bound_general[of S] by (metis linorder_not_le)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1679
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1680
lemma dim_span: "dim (span (S:: ('a::euclidean_space) set)) = dim S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1681
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1682
  have th0: "dim S \<le> dim (span S)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1683
    by (auto simp add: subset_eq intro: dim_subset span_superset)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1684
  from basis_exists[of S]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1685
  obtain B where B: "B \<subseteq> S" "independent B" "S \<subseteq> span B" "card B = dim S" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1686
  from B have fB: "finite B" "card B = dim S" using independent_bound by blast+
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1687
  have bSS: "B \<subseteq> span S" using B(1) by (metis subset_eq span_inc)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1688
  have sssB: "span S \<subseteq> span B" using span_mono[OF B(3)] by (simp add: span_span)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1689
  from span_card_ge_dim[OF bSS sssB fB(1)] th0 show ?thesis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1690
    using fB(2)  by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1691
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1692
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1693
lemma subset_le_dim: "(S:: ('a::euclidean_space) set) \<subseteq> span T \<Longrightarrow> dim S \<le> dim T"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1694
  by (metis dim_span dim_subset)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1695
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1696
lemma span_eq_dim: "span (S:: ('a::euclidean_space) set) = span T ==> dim S = dim T"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1697
  by (metis dim_span)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1698
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1699
lemma spans_image:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1700
  assumes lf: "linear f" and VB: "V \<subseteq> span B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1701
  shows "f ` V \<subseteq> span (f ` B)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1702
  unfolding span_linear_image[OF lf]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1703
  by (metis VB image_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1704
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1705
lemma dim_image_le:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1706
  fixes f :: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1707
  assumes lf: "linear f" shows "dim (f ` S) \<le> dim (S)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1708
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1709
  from basis_exists[of S] obtain B where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1710
    B: "B \<subseteq> S" "independent B" "S \<subseteq> span B" "card B = dim S" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1711
  from B have fB: "finite B" "card B = dim S" using independent_bound by blast+
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1712
  have "dim (f ` S) \<le> card (f ` B)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1713
    apply (rule span_card_ge_dim)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1714
    using lf B fB by (auto simp add: span_linear_image spans_image subset_image_iff)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1715
  also have "\<dots> \<le> dim S" using card_image_le[OF fB(1)] fB by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1716
  finally show ?thesis .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1717
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1718
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1719
text {* Relation between bases and injectivity/surjectivity of map. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1720
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1721
lemma spanning_surjective_image:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1722
  assumes us: "UNIV \<subseteq> span S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1723
  and lf: "linear f" and sf: "surj f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1724
  shows "UNIV \<subseteq> span (f ` S)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1725
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1726
  have "UNIV \<subseteq> f ` UNIV" using sf by (auto simp add: surj_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1727
  also have " \<dots> \<subseteq> span (f ` S)" using spans_image[OF lf us] .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1728
finally show ?thesis .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1729
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1730
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1731
lemma independent_injective_image:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1732
  assumes iS: "independent S" and lf: "linear f" and fi: "inj f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1733
  shows "independent (f ` S)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1734
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1735
  {fix a assume a: "a \<in> S" "f a \<in> span (f ` S - {f a})"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1736
    have eq: "f ` S - {f a} = f ` (S - {a})" using fi
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1737
      by (auto simp add: inj_on_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1738
    from a have "f a \<in> f ` span (S -{a})"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1739
      unfolding eq span_linear_image[OF lf, of "S - {a}"]  by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1740
    hence "a \<in> span (S -{a})" using fi by (auto simp add: inj_on_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1741
    with a(1) iS  have False by (simp add: dependent_def) }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1742
  then show ?thesis unfolding dependent_def by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1743
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1744
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1745
text {* Picking an orthogonal replacement for a spanning set. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1746
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1747
    (* FIXME : Move to some general theory ?*)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1748
definition "pairwise R S \<longleftrightarrow> (\<forall>x \<in> S. \<forall>y\<in> S. x\<noteq>y \<longrightarrow> R x y)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1749
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1750
lemma vector_sub_project_orthogonal: "(b::'a::euclidean_space) \<bullet> (x - ((b \<bullet> x) / (b \<bullet> b)) *\<^sub>R b) = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1751
  unfolding inner_simps by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1752
44528
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1753
lemma pairwise_orthogonal_insert:
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1754
  assumes "pairwise orthogonal S"
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1755
  assumes "\<And>y. y \<in> S \<Longrightarrow> orthogonal x y"
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1756
  shows "pairwise orthogonal (insert x S)"
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1757
  using assms unfolding pairwise_def
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1758
  by (auto simp add: orthogonal_commute)
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1759
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1760
lemma basis_orthogonal:
44528
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1761
  fixes B :: "('a::real_inner) set"
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1762
  assumes fB: "finite B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1763
  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
  1764
  (is " \<exists>C. ?P B C")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1765
proof(induct rule: finite_induct[OF fB])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1766
  case 1 thus ?case apply (rule exI[where x="{}"]) by (auto simp add: pairwise_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1767
next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1768
  case (2 a B)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1769
  note fB = `finite B` and aB = `a \<notin> B`
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1770
  from `\<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
  1771
  obtain C where C: "finite C" "card C \<le> card B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1772
    "span C = span B" "pairwise orthogonal C" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1773
  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
  1774
  let ?C = "insert ?a C"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1775
  from C(1) have fC: "finite ?C" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1776
  from fB aB C(1,2) have cC: "card ?C \<le> card (insert a B)" by (simp add: card_insert_if)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1777
  {fix x k
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1778
    have th0: "\<And>(a::'a) b c. a - (b - c) = c + (a - b)" by (simp add: field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1779
    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
  1780
      apply (simp only: scaleR_right_diff_distrib th0)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1781
      apply (rule span_add_eq)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1782
      apply (rule span_mul)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1783
      apply (rule span_setsum[OF C(1)])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1784
      apply clarify
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1785
      apply (rule span_mul)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1786
      by (rule span_superset)}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1787
  then have SC: "span ?C = span (insert a B)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1788
    unfolding set_eq_iff span_breakdown_eq C(3)[symmetric] by auto
44528
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1789
  { fix y assume yC: "y \<in> C"
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1790
    hence Cy: "C = insert y (C - {y})" by blast
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1791
    have fth: "finite (C - {y})" using C by simp
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1792
    have "orthogonal ?a y"
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1793
      unfolding orthogonal_def
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1794
      unfolding inner_diff inner_setsum_left diff_eq_0_iff_eq
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1795
      unfolding setsum_diff1' [OF `finite C` `y \<in> C`]
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1796
      apply (clarsimp simp add: inner_commute[of y a])
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1797
      apply (rule setsum_0')
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1798
      apply clarsimp
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1799
      apply (rule C(4)[unfolded pairwise_def orthogonal_def, rule_format])
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1800
      using `y \<in> C` by auto }
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1801
  with `pairwise orthogonal C` have CPO: "pairwise orthogonal ?C"
0b8e0dbb2bdd generalize and shorten proof of basis_orthogonal
huffman
parents: 44527
diff changeset
  1802
    by (rule pairwise_orthogonal_insert)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1803
  from fC cC SC CPO have "?P (insert a B) ?C" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1804
  then show ?case by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1805
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1806
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1807
lemma orthogonal_basis_exists:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1808
  fixes V :: "('a::euclidean_space) set"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1809
  shows "\<exists>B. independent B \<and> B \<subseteq> span V \<and> V \<subseteq> span B \<and> (card B = dim V) \<and> pairwise orthogonal B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1810
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1811
  from basis_exists[of V] obtain B where B: "B \<subseteq> V" "independent B" "V \<subseteq> span B" "card B = dim V" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1812
  from B have fB: "finite B" "card B = dim V" using independent_bound by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1813
  from basis_orthogonal[OF fB(1)] obtain C where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1814
    C: "finite C" "card C \<le> card B" "span C = span B" "pairwise orthogonal C" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1815
  from C B
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1816
  have CSV: "C \<subseteq> span V" by (metis span_inc span_mono subset_trans)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1817
  from span_mono[OF B(3)]  C have SVC: "span V \<subseteq> span C" by (simp add: span_span)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1818
  from card_le_dim_spanning[OF CSV SVC C(1)] C(2,3) fB
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1819
  have iC: "independent C" by (simp add: dim_span)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1820
  from C fB have "card C \<le> dim V" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1821
  moreover have "dim V \<le> card C" using span_card_ge_dim[OF CSV SVC C(1)]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1822
    by (simp add: dim_span)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1823
  ultimately have CdV: "card C = dim V" using C(1) by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1824
  from C B CSV CdV iC show ?thesis by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1825
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1826
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1827
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
  1828
  using span_inc[unfolded subset_eq] using span_mono[of T "span S"] span_mono[of S "span T"]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1829
  by(auto simp add: span_span)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1830
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1831
text {* Low-dimensional subset is in a hyperplane (weak orthogonal complement). *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1832
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1833
lemma span_not_univ_orthogonal: fixes S::"('a::euclidean_space) set"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1834
  assumes sU: "span S \<noteq> UNIV"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1835
  shows "\<exists>(a::'a). a \<noteq>0 \<and> (\<forall>x \<in> span S. a \<bullet> x = 0)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1836
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1837
  from sU obtain a where a: "a \<notin> span S" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1838
  from orthogonal_basis_exists obtain B where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1839
    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
  1840
    by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1841
  from B have fB: "finite B" "card B = dim S" using independent_bound by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1842
  from span_mono[OF B(2)] span_mono[OF B(3)]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1843
  have sSB: "span S = span B" by (simp add: span_span)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1844
  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
  1845
  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
  1846
    unfolding sSB
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1847
    apply (rule span_setsum[OF fB(1)])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1848
    apply clarsimp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1849
    apply (rule span_mul)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1850
    by (rule span_superset)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1851
  with a have a0:"?a  \<noteq> 0" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1852
  have "\<forall>x\<in>span B. ?a \<bullet> x = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1853
  proof(rule span_induct')
44454
6f28f96a09bf avoid warnings
huffman
parents: 44451
diff changeset
  1854
    show "subspace {x. ?a \<bullet> x = 0}" by (auto simp add: subspace_def inner_add)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1855
next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1856
    {fix x assume x: "x \<in> B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1857
      from x have B': "B = insert x (B - {x})" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1858
      have fth: "finite (B - {x})" using fB by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1859
      have "?a \<bullet> x = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1860
        apply (subst B') using fB fth
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1861
        unfolding setsum_clauses(2)[OF fth]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1862
        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
  1863
        apply (clarsimp simp add: inner_add inner_setsum_left)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1864
        apply (rule setsum_0', rule ballI)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1865
        unfolding inner_commute
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1866
        by (auto simp add: x field_simps intro: B(5)[unfolded pairwise_def orthogonal_def, rule_format])}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1867
    then show "\<forall>x \<in> B. ?a \<bullet> x = 0" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1868
  qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1869
  with a0 show ?thesis unfolding sSB by (auto intro: exI[where x="?a"])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1870
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1871
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1872
lemma span_not_univ_subset_hyperplane:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1873
  assumes SU: "span S \<noteq> (UNIV ::('a::euclidean_space) set)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1874
  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
  1875
  using span_not_univ_orthogonal[OF SU] by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1876
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1877
lemma lowdim_subset_hyperplane: fixes S::"('a::euclidean_space) set"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1878
  assumes d: "dim S < DIM('a)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1879
  shows "\<exists>(a::'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
  1880
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1881
  {assume "span S = UNIV"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1882
    hence "dim (span S) = dim (UNIV :: ('a) set)" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1883
    hence "dim S = DIM('a)" by (simp add: dim_span dim_UNIV)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1884
    with d have False by arith}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1885
  hence th: "span S \<noteq> UNIV" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1886
  from span_not_univ_subset_hyperplane[OF th] show ?thesis .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1887
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1888
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1889
text {* We can extend a linear basis-basis injection to the whole set. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1890
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1891
lemma linear_indep_image_lemma:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1892
  assumes lf: "linear f" and fB: "finite B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1893
  and ifB: "independent (f ` B)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1894
  and fi: "inj_on f B" and xsB: "x \<in> span B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1895
  and fx: "f x = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1896
  shows "x = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1897
  using fB ifB fi xsB fx
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1898
proof(induct arbitrary: x rule: finite_induct[OF fB])
44142
8e27e0177518 avoid warnings about duplicate rules
huffman
parents: 44133
diff changeset
  1899
  case 1 thus ?case by auto
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1900
next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1901
  case (2 a b x)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1902
  have fb: "finite b" using "2.prems" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1903
  have th0: "f ` b \<subseteq> f ` (insert a b)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1904
    apply (rule image_mono) by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1905
  from independent_mono[ OF "2.prems"(2) th0]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1906
  have ifb: "independent (f ` b)"  .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1907
  have fib: "inj_on f b"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1908
    apply (rule subset_inj_on [OF "2.prems"(3)])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1909
    by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1910
  from span_breakdown[of a "insert a b", simplified, OF "2.prems"(4)]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1911
  obtain k where k: "x - k*\<^sub>R a \<in> span (b -{a})" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1912
  have "f (x - k*\<^sub>R a) \<in> span (f ` b)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1913
    unfolding span_linear_image[OF lf]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1914
    apply (rule imageI)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1915
    using k span_mono[of "b-{a}" b] by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1916
  hence "f x - k*\<^sub>R f a \<in> span (f ` b)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1917
    by (simp add: linear_sub[OF lf] linear_cmul[OF lf])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1918
  hence th: "-k *\<^sub>R f a \<in> span (f ` b)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1919
    using "2.prems"(5) by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1920
  {assume k0: "k = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1921
    from k0 k have "x \<in> span (b -{a})" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1922
    then have "x \<in> span b" using span_mono[of "b-{a}" b]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1923
      by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1924
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1925
  {assume k0: "k \<noteq> 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1926
    from span_mul[OF th, of "- 1/ k"] k0
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1927
    have th1: "f a \<in> span (f ` b)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1928
      by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1929
    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
  1930
    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
  1931
    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
  1932
    have "f a \<notin> span (f ` b)" using tha
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1933
      using "2.hyps"(2)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1934
      "2.prems"(3) by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1935
    with th1 have False by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1936
    then have "x \<in> span b" by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1937
  ultimately have xsb: "x \<in> span b" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1938
  from "2.hyps"(3)[OF fb ifb fib xsb "2.prems"(5)]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1939
  show "x = 0" .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1940
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1941
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1942
text {* We can extend a linear mapping from basis. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1943
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1944
lemma linear_independent_extend_lemma:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1945
  fixes f :: "'a::real_vector \<Rightarrow> 'b::real_vector"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1946
  assumes fi: "finite B" and ib: "independent B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1947
  shows "\<exists>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
  1948
           \<and> (\<forall>x\<in> span B. \<forall>c. g (c*\<^sub>R x) = c *\<^sub>R g x)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1949
           \<and> (\<forall>x\<in> B. g x = f x)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1950
using ib fi
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1951
proof(induct rule: finite_induct[OF fi])
44142
8e27e0177518 avoid warnings about duplicate rules
huffman
parents: 44133
diff changeset
  1952
  case 1 thus ?case by auto
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1953
next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1954
  case (2 a b)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1955
  from "2.prems" "2.hyps" have ibf: "independent b" "finite b"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1956
    by (simp_all add: independent_insert)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1957
  from "2.hyps"(3)[OF ibf] obtain g where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1958
    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
  1959
    "\<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
  1960
  let ?h = "\<lambda>z. SOME k. (z - k *\<^sub>R a) \<in> span b"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1961
  {fix z assume z: "z \<in> span (insert a b)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1962
    have th0: "z - ?h z *\<^sub>R a \<in> span b"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1963
      apply (rule someI_ex)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1964
      unfolding span_breakdown_eq[symmetric]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1965
      using z .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1966
    {fix k assume k: "z - k *\<^sub>R a \<in> span b"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1967
      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
  1968
        by (simp add: field_simps scaleR_left_distrib [symmetric])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1969
      from span_sub[OF th0 k]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1970
      have khz: "(k - ?h z) *\<^sub>R a \<in> span b" by (simp add: eq)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1971
      {assume "k \<noteq> ?h z" hence k0: "k - ?h z \<noteq> 0" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1972
        from k0 span_mul[OF khz, of "1 /(k - ?h z)"]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1973
        have "a \<in> span b" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1974
        with "2.prems"(1) "2.hyps"(2) have False
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1975
          by (auto simp add: dependent_def)}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1976
      then have "k = ?h z" by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1977
    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)" by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1978
  note h = this
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1979
  let ?g = "\<lambda>z. ?h z *\<^sub>R f a + g (z - ?h z *\<^sub>R a)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1980
  {fix x y assume x: "x \<in> span (insert a b)" and y: "y \<in> span (insert a b)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1981
    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
  1982
      by (simp add: algebra_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1983
    have addh: "?h (x + y) = ?h x + ?h y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1984
      apply (rule conjunct2[OF h, rule_format, symmetric])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1985
      apply (rule span_add[OF x y])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1986
      unfolding tha
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1987
      by (metis span_add x y conjunct1[OF h, rule_format])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1988
    have "?g (x + y) = ?g x + ?g y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1989
      unfolding addh tha
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1990
      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
  1991
      by (simp add: scaleR_left_distrib)}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1992
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1993
  {fix x:: "'a" and c:: real  assume x: "x \<in> span (insert a b)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1994
    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
  1995
      by (simp add: algebra_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1996
    have hc: "?h (c *\<^sub>R x) = c * ?h x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1997
      apply (rule conjunct2[OF h, rule_format, symmetric])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1998
      apply (metis span_mul x)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  1999
      by (metis tha span_mul x conjunct1[OF h])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2000
    have "?g (c *\<^sub>R x) = c*\<^sub>R ?g x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2001
      unfolding hc tha g(2)[rule_format, OF conjunct1[OF h, OF x]]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2002
      by (simp add: algebra_simps)}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2003
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2004
  {fix x assume x: "x \<in> (insert a b)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2005
    {assume xa: "x = a"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2006
      have ha1: "1 = ?h a"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2007
        apply (rule conjunct2[OF h, rule_format])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2008
        apply (metis span_superset insertI1)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2009
        using conjunct1[OF h, OF span_superset, OF insertI1]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2010
        by (auto simp add: span_0)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2011
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2012
      from xa ha1[symmetric] have "?g x = f x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2013
        apply simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2014
        using g(2)[rule_format, OF span_0, of 0]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2015
        by simp}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2016
    moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2017
    {assume xb: "x \<in> b"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2018
      have h0: "0 = ?h x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2019
        apply (rule conjunct2[OF h, rule_format])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2020
        apply (metis  span_superset x)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2021
        apply simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2022
        apply (metis span_superset xb)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2023
        done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2024
      have "?g x = f x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2025
        by (simp add: h0[symmetric] g(3)[rule_format, OF xb])}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2026
    ultimately have "?g x = f x" using x by blast }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2027
  ultimately show ?case apply - apply (rule exI[where x="?g"]) by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2028
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2029
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2030
lemma linear_independent_extend:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2031
  assumes iB: "independent (B:: ('a::euclidean_space) set)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2032
  shows "\<exists>g. linear g \<and> (\<forall>x\<in>B. g x = f x)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2033
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2034
  from maximal_independent_subset_extend[of B UNIV] iB
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2035
  obtain C where C: "B \<subseteq> C" "independent C" "\<And>x. x \<in> span C" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2036
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2037
  from C(2) independent_bound[of C] linear_independent_extend_lemma[of C f]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2038
  obtain g where g: "(\<forall>x\<in> span C. \<forall>y\<in> span C. g (x + y) = g x + g y)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2039
           \<and> (\<forall>x\<in> span C. \<forall>c. g (c*\<^sub>R x) = c *\<^sub>R g x)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2040
           \<and> (\<forall>x\<in> C. g x = f x)" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2041
  from g show ?thesis unfolding linear_def using C
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2042
    apply clarsimp by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2043
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2044
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2045
text {* Can construct an isomorphism between spaces of same dimension. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2046
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2047
lemma card_le_inj: assumes fA: "finite A" and fB: "finite B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2048
  and c: "card A \<le> card B" shows "(\<exists>f. f ` A \<subseteq> B \<and> inj_on f A)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2049
using fB c
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2050
proof(induct arbitrary: B rule: finite_induct[OF fA])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2051
  case 1 thus ?case by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2052
next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2053
  case (2 x s t)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2054
  thus ?case
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2055
  proof(induct rule: finite_induct[OF "2.prems"(1)])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2056
    case 1    then show ?case by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2057
  next
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2058
    case (2 y t)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2059
    from "2.prems"(1,2,5) "2.hyps"(1,2) have cst:"card s \<le> card t" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2060
    from "2.prems"(3) [OF "2.hyps"(1) cst] obtain f where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2061
      f: "f ` s \<subseteq> t \<and> inj_on f s" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2062
    from f "2.prems"(2) "2.hyps"(2) show ?case
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2063
      apply -
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2064
      apply (rule exI[where x = "\<lambda>z. if z = x then y else f z"])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2065
      by (auto simp add: inj_on_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2066
  qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2067
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2068
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2069
lemma card_subset_eq: assumes fB: "finite B" and AB: "A \<subseteq> B" and
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2070
  c: "card A = card B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2071
  shows "A = B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2072
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2073
  from fB AB have fA: "finite A" by (auto intro: finite_subset)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2074
  from fA fB have fBA: "finite (B - A)" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2075
  have e: "A \<inter> (B - A) = {}" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2076
  have eq: "A \<union> (B - A) = B" using AB by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2077
  from card_Un_disjoint[OF fA fBA e, unfolded eq c]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2078
  have "card (B - A) = 0" by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2079
  hence "B - A = {}" unfolding card_eq_0_iff using fA fB by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2080
  with AB show "A = B" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2081
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2082
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2083
lemma subspace_isomorphism:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2084
  assumes s: "subspace (S:: ('a::euclidean_space) set)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2085
  and t: "subspace (T :: ('b::euclidean_space) set)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2086
  and d: "dim S = dim T"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2087
  shows "\<exists>f. linear f \<and> f ` S = T \<and> inj_on f S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2088
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2089
  from basis_exists[of S] independent_bound obtain B where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2090
    B: "B \<subseteq> S" "independent B" "S \<subseteq> span B" "card B = dim S" and fB: "finite B" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2091
  from basis_exists[of T] independent_bound obtain C where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2092
    C: "C \<subseteq> T" "independent C" "T \<subseteq> span C" "card C = dim T" and fC: "finite C" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2093
  from B(4) C(4) card_le_inj[of B C] d obtain f where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2094
    f: "f ` B \<subseteq> C" "inj_on f B" using `finite B` `finite C` by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2095
  from linear_independent_extend[OF B(2)] obtain g where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2096
    g: "linear g" "\<forall>x\<in> B. g x = f x" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2097
  from inj_on_iff_eq_card[OF fB, of f] f(2)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2098
  have "card (f ` B) = card B" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2099
  with B(4) C(4) have ceq: "card (f ` B) = card C" using d
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2100
    by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2101
  have "g ` B = f ` B" using g(2)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2102
    by (auto simp add: image_iff)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2103
  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
  2104
  finally have gBC: "g ` B = C" .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2105
  have gi: "inj_on g B" using f(2) g(2)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2106
    by (auto simp add: inj_on_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2107
  note g0 = linear_indep_image_lemma[OF g(1) fB, unfolded gBC, OF C(2) gi]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2108
  {fix x y assume x: "x \<in> S" and y: "y \<in> S" and gxy:"g x = g y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2109
    from B(3) x y have x': "x \<in> span B" and y': "y \<in> span B" by blast+
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2110
    from gxy have th0: "g (x - y) = 0" by (simp add: linear_sub[OF g(1)])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2111
    have th1: "x - y \<in> span B" using x' y' by (metis span_sub)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2112
    have "x=y" using g0[OF th1 th0] by simp }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2113
  then have giS: "inj_on g S"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2114
    unfolding inj_on_def by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2115
  from span_subspace[OF B(1,3) s]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2116
  have "g ` S = span (g ` B)" by (simp add: span_linear_image[OF g(1)])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2117
  also have "\<dots> = span C" unfolding gBC ..
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2118
  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
  2119
  finally have gS: "g ` S = T" .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2120
  from g(1) gS giS show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2121
qed
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
text {* Linear functions are equal on a subspace if they are on a spanning set. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2124
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2125
lemma subspace_kernel:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2126
  assumes lf: "linear f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2127
  shows "subspace {x. f x = 0}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2128
apply (simp add: subspace_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2129
by (simp add: linear_add[OF lf] linear_cmul[OF lf] linear_0[OF lf])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2130
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2131
lemma linear_eq_0_span:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2132
  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
  2133
  shows "\<forall>x \<in> span B. f x = 0"
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
  2134
  using f0 subspace_kernel[OF lf]
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
  2135
  by (rule span_induct')
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2136
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2137
lemma linear_eq_0:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2138
  assumes lf: "linear f" and SB: "S \<subseteq> span B" and f0: "\<forall>x\<in>B. f x = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2139
  shows "\<forall>x \<in> S. f x = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2140
  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
  2141
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2142
lemma linear_eq:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2143
  assumes lf: "linear f" and lg: "linear g" and S: "S \<subseteq> span B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2144
  and fg: "\<forall> x\<in> B. f x = g x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2145
  shows "\<forall>x\<in> S. f x = g x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2146
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2147
  let ?h = "\<lambda>x. f x - g x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2148
  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
  2149
  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
  2150
  show ?thesis by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2151
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2152
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2153
lemma linear_eq_stdbasis:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2154
  assumes lf: "linear (f::'a::euclidean_space \<Rightarrow> _)" and lg: "linear g"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2155
  and fg: "\<forall>i<DIM('a::euclidean_space). f (basis i) = g(basis i)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2156
  shows "f = g"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2157
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2158
  let ?U = "{..<DIM('a)}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2159
  let ?I = "(basis::nat=>'a) ` {..<DIM('a)}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2160
  {fix x assume x: "x \<in> (UNIV :: 'a set)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2161
    from equalityD2[OF span_basis'[where 'a='a]]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2162
    have IU: " (UNIV :: 'a set) \<subseteq> span ?I" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2163
    have "f x = g x" apply(rule linear_eq[OF lf lg IU,rule_format]) using fg x by auto }
44454
6f28f96a09bf avoid warnings
huffman
parents: 44451
diff changeset
  2164
  then show ?thesis by auto
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2165
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2166
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2167
text {* Similar results for bilinear functions. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2168
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2169
lemma bilinear_eq:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2170
  assumes bf: "bilinear f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2171
  and bg: "bilinear g"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2172
  and SB: "S \<subseteq> span B" and TC: "T \<subseteq> span C"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2173
  and fg: "\<forall>x\<in> B. \<forall>y\<in> C. f x y = g x y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2174
  shows "\<forall>x\<in>S. \<forall>y\<in>T. f x y = g x y "
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2175
proof-
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
  2176
  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
  2177
  from bf bg have sp: "subspace ?P"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2178
    unfolding bilinear_def linear_def subspace_def bf bg
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
  2179
    by(auto simp add: span_0 bilinear_lzero[OF bf] bilinear_lzero[OF bg] span_add Ball_def intro:  bilinear_ladd[OF bf])
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2180
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2181
  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
  2182
    apply (rule span_induct' [OF _ sp])
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2183
    apply (rule ballI)
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
  2184
    apply (rule span_induct')
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
  2185
    apply (simp add: fg)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2186
    apply (auto simp add: subspace_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2187
    using bf bg unfolding bilinear_def linear_def
44170
510ac30f44c0 make Multivariate_Analysis work with separate set type
huffman
parents: 44166
diff changeset
  2188
    by(auto simp add: span_0 bilinear_rzero[OF bf] bilinear_rzero[OF bg] span_add Ball_def intro:  bilinear_ladd[OF bf])
44454
6f28f96a09bf avoid warnings
huffman
parents: 44451
diff changeset
  2189
  then show ?thesis using SB TC by auto
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2190
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2191
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2192
lemma bilinear_eq_stdbasis: fixes f::"'a::euclidean_space \<Rightarrow> 'b::euclidean_space \<Rightarrow> _"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2193
  assumes bf: "bilinear f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2194
  and bg: "bilinear g"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2195
  and fg: "\<forall>i<DIM('a). \<forall>j<DIM('b). f (basis i) (basis j) = g (basis i) (basis j)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2196
  shows "f = g"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2197
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2198
  from fg have th: "\<forall>x \<in> (basis ` {..<DIM('a)}). \<forall>y\<in> (basis ` {..<DIM('b)}). f x y = g x y" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2199
  from bilinear_eq[OF bf bg equalityD2[OF span_basis'] equalityD2[OF span_basis'] th]
44454
6f28f96a09bf avoid warnings
huffman
parents: 44451
diff changeset
  2200
  show ?thesis by blast
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2201
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2202
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2203
text {* Detailed theorems about left and right invertibility in general case. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2204
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2205
lemma linear_injective_left_inverse: fixes f::"'a::euclidean_space => 'b::euclidean_space"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2206
  assumes lf: "linear f" and fi: "inj f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2207
  shows "\<exists>g. linear g \<and> g o f = id"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2208
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2209
  from linear_independent_extend[OF independent_injective_image, OF independent_basis, OF lf fi]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2210
  obtain h:: "'b => 'a" where h: "linear h"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2211
    " \<forall>x \<in> f ` basis ` {..<DIM('a)}. h x = inv f x" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2212
  from h(2)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2213
  have th: "\<forall>i<DIM('a). (h \<circ> f) (basis i) = id (basis i)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2214
    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
  2215
    by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2216
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2217
  from linear_eq_stdbasis[OF linear_compose[OF lf h(1)] linear_id th]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2218
  have "h o f = id" .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2219
  then show ?thesis using h(1) by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2220
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2221
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2222
lemma linear_surjective_right_inverse: fixes f::"'a::euclidean_space => 'b::euclidean_space"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2223
  assumes lf: "linear f" and sf: "surj f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2224
  shows "\<exists>g. linear g \<and> f o g = id"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2225
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2226
  from linear_independent_extend[OF independent_basis[where 'a='b],of "inv f"]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2227
  obtain h:: "'b \<Rightarrow> 'a" where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2228
    h: "linear h" "\<forall> x\<in> basis ` {..<DIM('b)}. h x = inv f x" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2229
  from h(2)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2230
  have th: "\<forall>i<DIM('b). (f o h) (basis i) = id (basis i)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2231
    using sf by(auto simp add: surj_iff_all)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2232
  from linear_eq_stdbasis[OF linear_compose[OF h(1) lf] linear_id th]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2233
  have "f o h = id" .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2234
  then show ?thesis using h(1) by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2235
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2236
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2237
text {* An injective map @{typ "'a::euclidean_space \<Rightarrow> 'b::euclidean_space"} is also surjective. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2238
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2239
lemma linear_injective_imp_surjective:  fixes f::"'a::euclidean_space => 'a::euclidean_space"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2240
  assumes lf: "linear f" and fi: "inj f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2241
  shows "surj f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2242
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2243
  let ?U = "UNIV :: 'a set"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2244
  from basis_exists[of ?U] obtain B
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2245
    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
  2246
    by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2247
  from B(4) have d: "dim ?U = card B" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2248
  have th: "?U \<subseteq> span (f ` B)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2249
    apply (rule card_ge_dim_independent)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2250
    apply blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2251
    apply (rule independent_injective_image[OF B(2) lf fi])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2252
    apply (rule order_eq_refl)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2253
    apply (rule sym)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2254
    unfolding d
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2255
    apply (rule card_image)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2256
    apply (rule subset_inj_on[OF fi])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2257
    by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2258
  from th show ?thesis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2259
    unfolding span_linear_image[OF lf] surj_def
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2260
    using B(3) by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2261
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2262
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2263
text {* And vice versa. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2264
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2265
lemma surjective_iff_injective_gen:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2266
  assumes fS: "finite S" and fT: "finite T" and c: "card S = card T"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2267
  and ST: "f ` S \<subseteq> T"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2268
  shows "(\<forall>y \<in> T. \<exists>x \<in> S. f x = y) \<longleftrightarrow> inj_on f S" (is "?lhs \<longleftrightarrow> ?rhs")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2269
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2270
  {assume h: "?lhs"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2271
    {fix x y assume x: "x \<in> S" and y: "y \<in> S" and f: "f x = f y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2272
      from x fS have S0: "card S \<noteq> 0" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2273
      {assume xy: "x \<noteq> y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2274
        have th: "card S \<le> card (f ` (S - {y}))"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2275
          unfolding c
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2276
          apply (rule card_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2277
          apply (rule finite_imageI)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2278
          using fS apply simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2279
          using h xy x y f unfolding subset_eq image_iff
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2280
          apply auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2281
          apply (case_tac "xa = f x")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2282
          apply (rule bexI[where x=x])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2283
          apply auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2284
          done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2285
        also have " \<dots> \<le> card (S -{y})"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2286
          apply (rule card_image_le)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2287
          using fS by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2288
        also have "\<dots> \<le> card S - 1" using y fS by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2289
        finally have False  using S0 by arith }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2290
      then have "x = y" by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2291
    then have ?rhs unfolding inj_on_def by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2292
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2293
  {assume h: ?rhs
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2294
    have "f ` S = T"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2295
      apply (rule card_subset_eq[OF fT ST])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2296
      unfolding card_image[OF h] using c .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2297
    then have ?lhs by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2298
  ultimately show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2299
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2300
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2301
lemma linear_surjective_imp_injective: fixes f::"'a::euclidean_space => 'a::euclidean_space"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2302
  assumes lf: "linear f" and sf: "surj f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2303
  shows "inj f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2304
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2305
  let ?U = "UNIV :: 'a set"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2306
  from basis_exists[of ?U] obtain B
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2307
    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
  2308
    by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2309
  {fix x assume x: "x \<in> span B" and fx: "f x = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2310
    from B(2) have fB: "finite B" using independent_bound by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2311
    have fBi: "independent (f ` B)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2312
      apply (rule card_le_dim_spanning[of "f ` B" ?U])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2313
      apply blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2314
      using sf B(3)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2315
      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
  2316
      apply blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2317
      using fB apply blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2318
      unfolding d[symmetric]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2319
      apply (rule card_image_le)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2320
      apply (rule fB)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2321
      done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2322
    have th0: "dim ?U \<le> card (f ` B)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2323
      apply (rule span_card_ge_dim)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2324
      apply blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2325
      unfolding span_linear_image[OF lf]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2326
      apply (rule subset_trans[where B = "f ` UNIV"])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2327
      using sf unfolding surj_def apply blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2328
      apply (rule image_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2329
      apply (rule B(3))
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2330
      apply (metis finite_imageI fB)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2331
      done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2332
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2333
    moreover have "card (f ` B) \<le> card B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2334
      by (rule card_image_le, rule fB)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2335
    ultimately have th1: "card B = card (f ` B)" unfolding d by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2336
    have fiB: "inj_on f B"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2337
      unfolding surjective_iff_injective_gen[OF fB finite_imageI[OF fB] th1 subset_refl, symmetric] by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2338
    from linear_indep_image_lemma[OF lf fB fBi fiB x] fx
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2339
    have "x = 0" by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2340
  note th = this
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2341
  from th show ?thesis unfolding linear_injective_0[OF lf]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2342
    using B(3) by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2343
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2344
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2345
text {* Hence either is enough for isomorphism. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2346
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2347
lemma left_right_inverse_eq:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2348
  assumes fg: "f o g = id" and gh: "g o h = id"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2349
  shows "f = h"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2350
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2351
  have "f = f o (g o h)" unfolding gh by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2352
  also have "\<dots> = (f o g) o h" by (simp add: o_assoc)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2353
  finally show "f = h" unfolding fg by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2354
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2355
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2356
lemma isomorphism_expand:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2357
  "f o g = id \<and> g o f = id \<longleftrightarrow> (\<forall>x. f(g x) = x) \<and> (\<forall>x. g(f x) = x)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2358
  by (simp add: fun_eq_iff o_def id_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2359
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2360
lemma linear_injective_isomorphism: fixes f::"'a::euclidean_space => 'a::euclidean_space"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2361
  assumes lf: "linear f" and fi: "inj f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2362
  shows "\<exists>f'. linear f' \<and> (\<forall>x. f' (f x) = x) \<and> (\<forall>x. f (f' x) = x)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2363
unfolding isomorphism_expand[symmetric]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2364
using linear_surjective_right_inverse[OF lf linear_injective_imp_surjective[OF lf fi]] linear_injective_left_inverse[OF lf fi]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2365
by (metis left_right_inverse_eq)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2366
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2367
lemma linear_surjective_isomorphism: fixes f::"'a::euclidean_space => 'a::euclidean_space"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2368
  assumes lf: "linear f" and sf: "surj f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2369
  shows "\<exists>f'. linear f' \<and> (\<forall>x. f' (f x) = x) \<and> (\<forall>x. f (f' x) = x)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2370
unfolding isomorphism_expand[symmetric]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2371
using linear_surjective_right_inverse[OF lf sf] linear_injective_left_inverse[OF lf linear_surjective_imp_injective[OF lf sf]]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2372
by (metis left_right_inverse_eq)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2373
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2374
text {* Left and right inverses are the same for @{typ "'a::euclidean_space => 'a::euclidean_space"}. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2375
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2376
lemma linear_inverse_left: fixes f::"'a::euclidean_space => 'a::euclidean_space"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2377
  assumes lf: "linear f" and lf': "linear f'"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2378
  shows "f o f' = id \<longleftrightarrow> f' o f = id"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2379
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2380
  {fix f f':: "'a => 'a"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2381
    assume lf: "linear f" "linear f'" and f: "f o f' = id"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2382
    from f have sf: "surj f"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2383
      apply (auto simp add: o_def id_def surj_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2384
      by metis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2385
    from linear_surjective_isomorphism[OF lf(1) sf] lf f
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2386
    have "f' o f = id" unfolding fun_eq_iff o_def id_def
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2387
      by metis}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2388
  then show ?thesis using lf lf' by metis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2389
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2390
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2391
text {* Moreover, a one-sided inverse is automatically linear. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2392
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2393
lemma left_inverse_linear: fixes f::"'a::euclidean_space => 'a::euclidean_space"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2394
  assumes lf: "linear f" and gf: "g o f = id"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2395
  shows "linear g"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2396
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2397
  from gf have fi: "inj f" apply (auto simp add: inj_on_def o_def id_def fun_eq_iff)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2398
    by metis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2399
  from linear_injective_isomorphism[OF lf fi]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2400
  obtain h:: "'a \<Rightarrow> 'a" where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2401
    h: "linear h" "\<forall>x. h (f x) = x" "\<forall>x. f (h x) = x" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2402
  have "h = g" apply (rule ext) using gf h(2,3)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2403
    apply (simp add: o_def id_def fun_eq_iff)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2404
    by metis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2405
  with h(1) show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2406
qed
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
subsection {* Infinity norm *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2409
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2410
definition "infnorm (x::'a::euclidean_space) = Sup {abs(x$$i) |i. i<DIM('a)}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2411
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2412
lemma numseg_dimindex_nonempty: "\<exists>i. i \<in> (UNIV :: 'n set)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2413
  by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2414
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2415
lemma infnorm_set_image:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2416
  "{abs((x::'a::euclidean_space)$$i) |i. i<DIM('a)} =
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2417
  (\<lambda>i. abs(x$$i)) ` {..<DIM('a)}" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2418
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2419
lemma infnorm_set_lemma:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2420
  shows "finite {abs((x::'a::euclidean_space)$$i) |i. i<DIM('a)}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2421
  and "{abs(x$$i) |i. i<DIM('a::euclidean_space)} \<noteq> {}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2422
  unfolding infnorm_set_image
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2423
  by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2424
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2425
lemma infnorm_pos_le: "0 \<le> infnorm (x::'a::euclidean_space)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2426
  unfolding infnorm_def
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2427
  unfolding Sup_finite_ge_iff[ OF infnorm_set_lemma]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2428
  unfolding infnorm_set_image
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2429
  by auto
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 infnorm_triangle: "infnorm ((x::'a::euclidean_space) + y) \<le> infnorm x + infnorm y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2432
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2433
  have th: "\<And>x y (z::real). x - y <= z \<longleftrightarrow> x - z <= y" by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2434
  have th1: "\<And>S f. f ` S = { f i| i. i \<in> S}" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2435
  have th2: "\<And>x (y::real). abs(x + y) - abs(x) <= abs(y)" by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2436
  have *:"\<And>i. i \<in> {..<DIM('a)} \<longleftrightarrow> i <DIM('a)" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2437
  show ?thesis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2438
  unfolding infnorm_def unfolding  Sup_finite_le_iff[ OF infnorm_set_lemma[where 'a='a]]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2439
  apply (subst diff_le_eq[symmetric])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2440
  unfolding Sup_finite_ge_iff[ OF infnorm_set_lemma]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2441
  unfolding infnorm_set_image bex_simps
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2442
  apply (subst th)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2443
  unfolding th1 *
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2444
  unfolding Sup_finite_ge_iff[ OF infnorm_set_lemma[where 'a='a]]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2445
  unfolding infnorm_set_image ball_simps bex_simps
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2446
  unfolding euclidean_simps by (metis th2)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2447
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2448
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2449
lemma infnorm_eq_0: "infnorm x = 0 \<longleftrightarrow> (x::_::euclidean_space) = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2450
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2451
  have "infnorm x <= 0 \<longleftrightarrow> x = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2452
    unfolding infnorm_def
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2453
    unfolding Sup_finite_le_iff[OF infnorm_set_lemma]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2454
    unfolding infnorm_set_image ball_simps
44457
d366fa5551ef declare euclidean_simps [simp] at the point they are proved;
huffman
parents: 44454
diff changeset
  2455
    apply(subst (1) euclidean_eq)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2456
    by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2457
  then show ?thesis using infnorm_pos_le[of x] by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2458
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2459
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2460
lemma infnorm_0: "infnorm 0 = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2461
  by (simp add: infnorm_eq_0)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2462
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2463
lemma infnorm_neg: "infnorm (- x) = infnorm x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2464
  unfolding infnorm_def
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2465
  apply (rule cong[of "Sup" "Sup"])
44457
d366fa5551ef declare euclidean_simps [simp] at the point they are proved;
huffman
parents: 44454
diff changeset
  2466
  apply blast by auto
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2467
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2468
lemma infnorm_sub: "infnorm (x - y) = infnorm (y - x)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2469
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2470
  have "y - x = - (x - y)" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2471
  then show ?thesis  by (metis infnorm_neg)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2472
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2473
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2474
lemma real_abs_sub_infnorm: "\<bar> infnorm x - infnorm y\<bar> \<le> infnorm (x - y)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2475
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2476
  have th: "\<And>(nx::real) n ny. nx <= n + ny \<Longrightarrow> ny <= n + nx ==> \<bar>nx - ny\<bar> <= n"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2477
    by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2478
  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
  2479
  have ths: "infnorm x \<le> infnorm (x - y) + infnorm y"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2480
    "infnorm y \<le> infnorm (x - y) + infnorm x"
44454
6f28f96a09bf avoid warnings
huffman
parents: 44451
diff changeset
  2481
    by (simp_all add: field_simps infnorm_neg)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2482
  from th[OF ths]  show ?thesis .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2483
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2484
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2485
lemma real_abs_infnorm: " \<bar>infnorm x\<bar> = infnorm x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2486
  using infnorm_pos_le[of x] by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2487
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2488
lemma component_le_infnorm:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2489
  shows "\<bar>x$$i\<bar> \<le> infnorm (x::'a::euclidean_space)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2490
proof(cases "i<DIM('a)")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2491
  case False thus ?thesis using infnorm_pos_le by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2492
next case True
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2493
  let ?U = "{..<DIM('a)}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2494
  let ?S = "{\<bar>x$$i\<bar> |i. i<DIM('a)}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2495
  have fS: "finite ?S" unfolding image_Collect[symmetric]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2496
    apply (rule finite_imageI) by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2497
  have S0: "?S \<noteq> {}" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2498
  have th1: "\<And>S f. f ` S = { f i| i. i \<in> S}" by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2499
  show ?thesis unfolding infnorm_def  
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2500
    apply(subst Sup_finite_ge_iff) using Sup_finite_in[OF fS S0]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2501
    using infnorm_set_image using True by auto
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
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2504
lemma infnorm_mul_lemma: "infnorm(a *\<^sub>R x) <= \<bar>a\<bar> * infnorm x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2505
  apply (subst infnorm_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2506
  unfolding Sup_finite_le_iff[OF infnorm_set_lemma]
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44176
diff changeset
  2507
  unfolding infnorm_set_image ball_simps euclidean_component_scaleR abs_mult
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2508
  using component_le_infnorm[of x] by(auto intro: mult_mono) 
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2509
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2510
lemma infnorm_mul: "infnorm(a *\<^sub>R x) = abs a * infnorm x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2511
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2512
  {assume a0: "a = 0" hence ?thesis by (simp add: infnorm_0) }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2513
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2514
  {assume a0: "a \<noteq> 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2515
    from a0 have th: "(1/a) *\<^sub>R (a *\<^sub>R x) = x" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2516
    from a0 have ap: "\<bar>a\<bar> > 0" by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2517
    from infnorm_mul_lemma[of "1/a" "a *\<^sub>R x"]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2518
    have "infnorm x \<le> 1/\<bar>a\<bar> * infnorm (a*\<^sub>R x)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2519
      unfolding th by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2520
    with ap have "\<bar>a\<bar> * infnorm x \<le> \<bar>a\<bar> * (1/\<bar>a\<bar> * infnorm (a *\<^sub>R x))" by (simp add: field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2521
    then have "\<bar>a\<bar> * infnorm x \<le> infnorm (a*\<^sub>R x)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2522
      using ap by (simp add: field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2523
    with infnorm_mul_lemma[of a x] have ?thesis by arith }
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2524
  ultimately show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2525
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2526
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2527
lemma infnorm_pos_lt: "infnorm x > 0 \<longleftrightarrow> x \<noteq> 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2528
  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
  2529
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2530
text {* Prove that it differs only up to a bound from Euclidean norm. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2531
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2532
lemma infnorm_le_norm: "infnorm x \<le> norm x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2533
  unfolding infnorm_def Sup_finite_le_iff[OF infnorm_set_lemma]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2534
  unfolding infnorm_set_image  ball_simps
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2535
  by (metis component_le_norm)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2536
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2537
lemma norm_le_infnorm: "norm(x) <= sqrt(real DIM('a)) * infnorm(x::'a::euclidean_space)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2538
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2539
  let ?d = "DIM('a)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2540
  have "real ?d \<ge> 0" by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2541
  hence d2: "(sqrt (real ?d))^2 = real ?d"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2542
    by (auto intro: real_sqrt_pow2)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2543
  have th: "sqrt (real ?d) * infnorm x \<ge> 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2544
    by (simp add: zero_le_mult_iff infnorm_pos_le)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2545
  have th1: "x \<bullet> x \<le> (sqrt (real ?d) * infnorm x)^2"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2546
    unfolding power_mult_distrib d2
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2547
    unfolding real_of_nat_def apply(subst euclidean_inner)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2548
    apply (subst power2_abs[symmetric])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2549
    apply(rule order_trans[OF setsum_bounded[where K="\<bar>infnorm x\<bar>\<twosuperior>"]])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2550
    apply(auto simp add: power2_eq_square[symmetric])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2551
    apply (subst power2_abs[symmetric])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2552
    apply (rule power_mono)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2553
    unfolding infnorm_def  Sup_finite_ge_iff[OF infnorm_set_lemma]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2554
    unfolding infnorm_set_image bex_simps apply(rule_tac x=i in bexI) by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2555
  from real_le_lsqrt[OF inner_ge_zero th th1]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2556
  show ?thesis unfolding norm_eq_sqrt_inner id_def .
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2557
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2558
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2559
text {* Equality in Cauchy-Schwarz and triangle inequalities. *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2560
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2561
lemma norm_cauchy_schwarz_eq: "x \<bullet> y = norm x * norm y \<longleftrightarrow> norm x *\<^sub>R y = norm y *\<^sub>R x" (is "?lhs \<longleftrightarrow> ?rhs")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2562
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2563
  {assume h: "x = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2564
    hence ?thesis by simp}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2565
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2566
  {assume h: "y = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2567
    hence ?thesis by simp}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2568
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2569
  {assume x: "x \<noteq> 0" and y: "y \<noteq> 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2570
    from inner_eq_zero_iff[of "norm y *\<^sub>R x - norm x *\<^sub>R y"]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2571
    have "?rhs \<longleftrightarrow> (norm y * (norm y * norm x * norm x - norm x * (x \<bullet> y)) - norm x * (norm y * (y \<bullet> x) - norm x * norm y * norm y) =  0)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2572
      using x y
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2573
      unfolding inner_simps
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2574
      unfolding power2_norm_eq_inner[symmetric] power2_eq_square diff_eq_0_iff_eq apply (simp add: inner_commute)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2575
      apply (simp add: field_simps) by metis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2576
    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
  2577
      by (simp add: field_simps inner_commute)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2578
    also have "\<dots> \<longleftrightarrow> ?lhs" using x y
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2579
      apply simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2580
      by metis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2581
    finally have ?thesis by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2582
  ultimately show ?thesis by blast
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
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2585
lemma norm_cauchy_schwarz_abs_eq:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2586
  shows "abs(x \<bullet> y) = norm x * norm y \<longleftrightarrow>
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2587
                norm x *\<^sub>R y = norm y *\<^sub>R x \<or> norm(x) *\<^sub>R y = - norm y *\<^sub>R x" (is "?lhs \<longleftrightarrow> ?rhs")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2588
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2589
  have th: "\<And>(x::real) a. a \<ge> 0 \<Longrightarrow> abs x = a \<longleftrightarrow> x = a \<or> x = - a" by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2590
  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
  2591
    by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2592
  also have "\<dots> \<longleftrightarrow>(x \<bullet> y = norm x * norm y \<or>
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2593
     (-x) \<bullet> y = norm x * norm y)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2594
    unfolding norm_cauchy_schwarz_eq[symmetric]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2595
    unfolding norm_minus_cancel norm_scaleR ..
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2596
  also have "\<dots> \<longleftrightarrow> ?lhs"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2597
    unfolding th[OF mult_nonneg_nonneg, OF norm_ge_zero[of x] norm_ge_zero[of y]] inner_simps by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2598
  finally show ?thesis ..
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2599
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2600
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2601
lemma norm_triangle_eq:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2602
  fixes x y :: "'a::real_inner"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2603
  shows "norm(x + y) = norm x + norm y \<longleftrightarrow> norm x *\<^sub>R y = norm y *\<^sub>R x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2604
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2605
  {assume x: "x =0 \<or> y =0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2606
    hence ?thesis by (cases "x=0", simp_all)}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2607
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2608
  {assume x: "x \<noteq> 0" and y: "y \<noteq> 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2609
    hence "norm x \<noteq> 0" "norm y \<noteq> 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2610
      by simp_all
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2611
    hence n: "norm x > 0" "norm y > 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2612
      using norm_ge_zero[of x] norm_ge_zero[of y]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2613
      by arith+
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2614
    have th: "\<And>(a::real) b c. a + b + c \<noteq> 0 ==> (a = b + c \<longleftrightarrow> a^2 = (b + c)^2)" by algebra
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2615
    have "norm(x + y) = norm x + norm y \<longleftrightarrow> norm(x + y)^ 2 = (norm x + norm y) ^2"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2616
      apply (rule th) using n norm_ge_zero[of "x + y"]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2617
      by arith
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2618
    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
  2619
      unfolding norm_cauchy_schwarz_eq[symmetric]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2620
      unfolding power2_norm_eq_inner inner_simps
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2621
      by (simp add: power2_norm_eq_inner[symmetric] power2_eq_square inner_commute field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2622
    finally have ?thesis .}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2623
  ultimately show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2624
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2625
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2626
subsection {* Collinearity *}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2627
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2628
definition
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2629
  collinear :: "'a::real_vector set \<Rightarrow> bool" where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2630
  "collinear S \<longleftrightarrow> (\<exists>u. \<forall>x \<in> S. \<forall> y \<in> S. \<exists>c. x - y = c *\<^sub>R u)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2631
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2632
lemma collinear_empty:  "collinear {}" by (simp add: collinear_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2633
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2634
lemma collinear_sing: "collinear {x}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2635
  by (simp add: collinear_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2636
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2637
lemma collinear_2: "collinear {x, y}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2638
  apply (simp add: collinear_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2639
  apply (rule exI[where x="x - y"])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2640
  apply auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2641
  apply (rule exI[where x=1], simp)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2642
  apply (rule exI[where x="- 1"], simp)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2643
  done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2644
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2645
lemma collinear_lemma: "collinear {0,x,y} \<longleftrightarrow> x = 0 \<or> y = 0 \<or> (\<exists>c. y = c *\<^sub>R x)" (is "?lhs \<longleftrightarrow> ?rhs")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2646
proof-
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2647
  {assume "x=0 \<or> y = 0" hence ?thesis
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2648
      by (cases "x = 0", simp_all add: collinear_2 insert_commute)}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2649
  moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2650
  {assume x: "x \<noteq> 0" and y: "y \<noteq> 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2651
    {assume h: "?lhs"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2652
      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" unfolding collinear_def by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2653
      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
  2654
      obtain cx and cy where
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2655
        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
  2656
        by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2657
      from cx x have cx0: "cx \<noteq> 0" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2658
      from cy y have cy0: "cy \<noteq> 0" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2659
      let ?d = "cy / cx"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2660
      from cx cy cx0 have "y = ?d *\<^sub>R x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2661
        by simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2662
      hence ?rhs using x y by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2663
    moreover
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2664
    {assume h: "?rhs"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2665
      then obtain c where c: "y = c *\<^sub>R x" using x y by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2666
      have ?lhs unfolding collinear_def c
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2667
        apply (rule exI[where x=x])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2668
        apply auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2669
        apply (rule exI[where x="- 1"], simp)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2670
        apply (rule exI[where x= "-c"], simp)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2671
        apply (rule exI[where x=1], simp)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2672
        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
  2673
        apply (rule exI[where x="c - 1"], simp add: scaleR_left_diff_distrib)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2674
        done}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2675
    ultimately have ?thesis by blast}
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2676
  ultimately show ?thesis by blast
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2677
qed
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2678
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2679
lemma norm_cauchy_schwarz_equal:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2680
  shows "abs(x \<bullet> y) = norm x * norm y \<longleftrightarrow> collinear {0,x,y}"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2681
unfolding norm_cauchy_schwarz_abs_eq
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2682
apply (cases "x=0", simp_all add: collinear_2)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2683
apply (cases "y=0", simp_all add: collinear_2 insert_commute)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2684
unfolding collinear_lemma
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2685
apply simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2686
apply (subgoal_tac "norm x \<noteq> 0")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2687
apply (subgoal_tac "norm y \<noteq> 0")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2688
apply (rule iffI)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2689
apply (cases "norm x *\<^sub>R y = norm y *\<^sub>R x")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2690
apply (rule exI[where x="(1/norm x) * norm y"])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2691
apply (drule sym)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2692
unfolding scaleR_scaleR[symmetric]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2693
apply (simp add: field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2694
apply (rule exI[where x="(1/norm x) * - norm y"])
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2695
apply clarify
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2696
apply (drule sym)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2697
unfolding scaleR_scaleR[symmetric]
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2698
apply (simp add: field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2699
apply (erule exE)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2700
apply (erule ssubst)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2701
unfolding scaleR_scaleR
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2702
unfolding norm_scaleR
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2703
apply (subgoal_tac "norm x * c = \<bar>c\<bar> * norm x \<or> norm x * c = - \<bar>c\<bar> * norm x")
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2704
apply (case_tac "c <= 0", simp add: field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2705
apply (simp add: field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2706
apply (case_tac "c <= 0", simp add: field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2707
apply (simp add: field_simps)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2708
apply simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2709
apply simp
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2710
done
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2711
44529
d4d9ea33703c arrange everything related to ordered_euclidean_space class together
huffman
parents: 44528
diff changeset
  2712
subsection {* An ordering on euclidean spaces that will allow us to talk about intervals *}
d4d9ea33703c arrange everything related to ordered_euclidean_space class together
huffman
parents: 44528
diff changeset
  2713
d4d9ea33703c arrange everything related to ordered_euclidean_space class together
huffman
parents: 44528
diff changeset
  2714
class ordered_euclidean_space = ord + euclidean_space +
d4d9ea33703c arrange everything related to ordered_euclidean_space class together
huffman
parents: 44528
diff changeset
  2715
  assumes eucl_le: "x \<le> y \<longleftrightarrow> (\<forall>i < DIM('a). x $$ i \<le> y $$ i)"
d4d9ea33703c arrange everything related to ordered_euclidean_space class together
huffman
parents: 44528
diff changeset
  2716
  and eucl_less: "x < y \<longleftrightarrow> (\<forall>i < DIM('a). x $$ i < y $$ i)"
d4d9ea33703c arrange everything related to ordered_euclidean_space class together
huffman
parents: 44528
diff changeset
  2717
d4d9ea33703c arrange everything related to ordered_euclidean_space class together
huffman
parents: 44528
diff changeset
  2718
lemma eucl_less_not_refl[simp, intro!]: "\<not> x < (x::'a::ordered_euclidean_space)"
d4d9ea33703c arrange everything related to ordered_euclidean_space class together
huffman
parents: 44528
diff changeset
  2719
  unfolding eucl_less[where 'a='a] by auto
d4d9ea33703c arrange everything related to ordered_euclidean_space class together
huffman
parents: 44528
diff changeset
  2720
d4d9ea33703c arrange everything related to ordered_euclidean_space class together
huffman
parents: 44528
diff changeset
  2721
lemma euclidean_trans[trans]:
d4d9ea33703c arrange everything related to ordered_euclidean_space class together
huffman
parents: 44528
diff changeset
  2722
  fixes x y z :: "'a::ordered_euclidean_space"
d4d9ea33703c arrange everything related to ordered_euclidean_space class together
huffman
parents: 44528
diff changeset
  2723
  shows "x < y \<Longrightarrow> y < z \<Longrightarrow> x < z"
d4d9ea33703c arrange everything related to ordered_euclidean_space class together
huffman
parents: 44528
diff changeset
  2724
  and "x \<le> y \<Longrightarrow> y < z \<Longrightarrow> x < z"
d4d9ea33703c arrange everything related to ordered_euclidean_space class together
huffman
parents: 44528
diff changeset
  2725
  and "x \<le> y \<Longrightarrow> y \<le> z \<Longrightarrow> x \<le> z"
d4d9ea33703c arrange everything related to ordered_euclidean_space class together
huffman
parents: 44528
diff changeset
  2726
  unfolding eucl_less[where 'a='a] eucl_le[where 'a='a]
d4d9ea33703c arrange everything related to ordered_euclidean_space class together
huffman
parents: 44528
diff changeset
  2727
  by (fast intro: less_trans, fast intro: le_less_trans,
d4d9ea33703c arrange everything related to ordered_euclidean_space class together
huffman
parents: 44528
diff changeset
  2728
    fast intro: order_trans)
44133
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2729
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2730
lemma basis_real_range: "basis ` {..<1} = {1::real}" by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2731
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2732
instance real::ordered_euclidean_space
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2733
  by default (auto simp add: euclidean_component_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2734
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2735
lemma Eucl_real_simps[simp]:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2736
  "(x::real) $$ 0 = x"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2737
  "(\<chi>\<chi> i. f i) = ((f 0)::real)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2738
  "\<And>i. i > 0 \<Longrightarrow> x $$ i = 0"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2739
  defer apply(subst euclidean_eq) apply safe
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2740
  unfolding euclidean_lambda_beta'
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2741
  unfolding euclidean_component_def by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2742
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2743
lemma complex_basis[simp]:
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2744
  shows "basis 0 = (1::complex)" and "basis 1 = ii" and "basis (Suc 0) = ii"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2745
  unfolding basis_complex_def by auto
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2746
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2747
lemma DIM_prod[simp]: "DIM('a \<times> 'b) = DIM('b::euclidean_space) + DIM('a::euclidean_space)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2748
  (* FIXME: why this orientation? Why not "DIM('a) + DIM('b)" ? *)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2749
  unfolding dimension_prod_def by (rule add_commute)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2750
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2751
instantiation prod :: (ordered_euclidean_space, ordered_euclidean_space) ordered_euclidean_space
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2752
begin
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2753
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2754
definition "x \<le> (y::('a\<times>'b)) \<longleftrightarrow> (\<forall>i<DIM('a\<times>'b). x $$ i \<le> y $$ i)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2755
definition "x < (y::('a\<times>'b)) \<longleftrightarrow> (\<forall>i<DIM('a\<times>'b). x $$ i < y $$ i)"
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2756
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2757
instance proof qed (auto simp: less_prod_def less_eq_prod_def)
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2758
end
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2759
691c52e900ca split Linear_Algebra.thy from Euclidean_Space.thy
huffman
parents:
diff changeset
  2760
end