src/HOL/Multivariate_Analysis/Euclidean_Space.thy
author hoelzl
Thu, 01 Jul 2010 09:01:09 +0200
changeset 37664 2946b8f057df
parent 37647 a5400b94d2dd
child 37731 8c6bfe10a4ae
permissions -rw-r--r--
Instantiate product type as euclidean space.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
35253
68dd8b51c6b8 tuned headers;
wenzelm
parents: 35172
diff changeset
     1
(*  Title:      Library/Multivariate_Analysis/Euclidean_Space.thy
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
     2
    Author:     Amine Chaieb, University of Cambridge
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
     3
*)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
     4
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
     5
header {* (Real) Vectors in Euclidean space, and elementary linear algebra.*}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
     6
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
     7
theory Euclidean_Space
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
     8
imports
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
     9
  Complex_Main "~~/src/HOL/Decision_Procs/Dense_Linear_Order"
37647
a5400b94d2dd minimize dependencies on Numeral_Type
huffman
parents: 37646
diff changeset
    10
  Infinite_Set
36623
d26348b667f2 Moved Convex theory to library.
hoelzl
parents: 36596
diff changeset
    11
  Inner_Product L2_Norm Convex
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    12
uses "positivstellensatz.ML" ("normarith.ML")
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    13
begin
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    14
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
    15
lemma cond_application_beta: "(if b then f else g) x = (if b then f x else g x)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
    16
  by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    17
37606
b47dd044a1f1 inner_simps is not enough, need also local facts
haftmann
parents: 37489
diff changeset
    18
notation inner (infix "\<bullet>" 70)
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
    19
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    20
subsection {* A connectedness or intermediate value lemma with several applications. *}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    21
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    22
lemma connected_real_lemma:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    23
  fixes f :: "real \<Rightarrow> 'a::metric_space"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    24
  assumes ab: "a \<le> b" and fa: "f a \<in> e1" and fb: "f b \<in> e2"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    25
  and dst: "\<And>e x. a <= x \<Longrightarrow> x <= b \<Longrightarrow> 0 < e ==> \<exists>d > 0. \<forall>y. abs(y - x) < d \<longrightarrow> dist(f y) (f x) < e"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    26
  and e1: "\<forall>y \<in> e1. \<exists>e > 0. \<forall>y'. dist y' y < e \<longrightarrow> y' \<in> e1"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    27
  and e2: "\<forall>y \<in> e2. \<exists>e > 0. \<forall>y'. dist y' y < e \<longrightarrow> y' \<in> e2"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    28
  and e12: "~(\<exists>x \<ge> a. x <= b \<and> f x \<in> e1 \<and> f x \<in> e2)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    29
  shows "\<exists>x \<ge> a. x <= b \<and> f x \<notin> e1 \<and> f x \<notin> e2" (is "\<exists> x. ?P x")
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    30
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    31
  let ?S = "{c. \<forall>x \<ge> a. x <= c \<longrightarrow> f x \<in> e1}"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    32
  have Se: " \<exists>x. x \<in> ?S" apply (rule exI[where x=a]) by (auto simp add: fa)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    33
  have Sub: "\<exists>y. isUb UNIV ?S y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    34
    apply (rule exI[where x= b])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    35
    using ab fb e12 by (auto simp add: isUb_def setle_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    36
  from reals_complete[OF Se Sub] obtain l where
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    37
    l: "isLub UNIV ?S l"by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    38
  have alb: "a \<le> l" "l \<le> b" using l ab fa fb e12
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    39
    apply (auto simp add: isLub_def leastP_def isUb_def setle_def setge_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    40
    by (metis linorder_linear)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    41
  have ale1: "\<forall>z \<ge> a. z < l \<longrightarrow> f z \<in> e1" using l
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    42
    apply (auto simp add: isLub_def leastP_def isUb_def setle_def setge_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    43
    by (metis linorder_linear not_le)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    44
    have th1: "\<And>z x e d :: real. z <= x + e \<Longrightarrow> e < d ==> z < x \<or> abs(z - x) < d" by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    45
    have th2: "\<And>e x:: real. 0 < e ==> ~(x + e <= x)" by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    46
    have th3: "\<And>d::real. d > 0 \<Longrightarrow> \<exists>e > 0. e < d" by dlo
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    47
    {assume le2: "f l \<in> e2"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    48
      from le2 fa fb e12 alb have la: "l \<noteq> a" by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    49
      hence lap: "l - a > 0" using alb by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    50
      from e2[rule_format, OF le2] obtain e where
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    51
        e: "e > 0" "\<forall>y. dist y (f l) < e \<longrightarrow> y \<in> e2" by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    52
      from dst[OF alb e(1)] obtain d where
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    53
        d: "d > 0" "\<forall>y. \<bar>y - l\<bar> < d \<longrightarrow> dist (f y) (f l) < e" by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    54
      have "\<exists>d'. d' < d \<and> d' >0 \<and> l - d' > a" using lap d(1)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    55
        apply ferrack by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    56
      then obtain d' where d': "d' > 0" "d' < d" "l - d' > a" by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    57
      from d e have th0: "\<forall>y. \<bar>y - l\<bar> < d \<longrightarrow> f y \<in> e2" by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    58
      from th0[rule_format, of "l - d'"] d' have "f (l - d') \<in> e2" by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    59
      moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    60
      have "f (l - d') \<in> e1" using ale1[rule_format, of "l -d'"] d' by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    61
      ultimately have False using e12 alb d' by auto}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    62
    moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    63
    {assume le1: "f l \<in> e1"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    64
    from le1 fa fb e12 alb have lb: "l \<noteq> b" by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    65
      hence blp: "b - l > 0" using alb by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    66
      from e1[rule_format, OF le1] obtain e where
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    67
        e: "e > 0" "\<forall>y. dist y (f l) < e \<longrightarrow> y \<in> e1" by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    68
      from dst[OF alb e(1)] obtain d where
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    69
        d: "d > 0" "\<forall>y. \<bar>y - l\<bar> < d \<longrightarrow> dist (f y) (f l) < e" by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    70
      have "\<exists>d'. d' < d \<and> d' >0" using d(1) by dlo
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    71
      then obtain d' where d': "d' > 0" "d' < d" by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    72
      from d e have th0: "\<forall>y. \<bar>y - l\<bar> < d \<longrightarrow> f y \<in> e1" by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    73
      hence "\<forall>y. l \<le> y \<and> y \<le> l + d' \<longrightarrow> f y \<in> e1" using d' by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    74
      with ale1 have "\<forall>y. a \<le> y \<and> y \<le> l + d' \<longrightarrow> f y \<in> e1" by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    75
      with l d' have False
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    76
        by (auto simp add: isLub_def isUb_def setle_def setge_def leastP_def) }
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    77
    ultimately show ?thesis using alb by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    78
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    79
36431
340755027840 move definitions and theorems for type real^1 to separate theory file
huffman
parents: 36365
diff changeset
    80
text{* One immediately useful corollary is the existence of square roots! --- Should help to get rid of all the development of square-root for reals as a special case *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    81
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    82
lemma square_bound_lemma: "(x::real) < (1 + x) * (1 + x)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    83
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    84
  have "(x + 1/2)^2 + 3/4 > 0" using zero_le_power2[of "x+1/2"] by arith
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
    85
  thus ?thesis by (simp add: field_simps power2_eq_square)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    86
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    87
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    88
lemma square_continuous: "0 < (e::real) ==> \<exists>d. 0 < d \<and> (\<forall>y. abs(y - x) < d \<longrightarrow> abs(y * y - x * x) < e)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    89
  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)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    90
  apply (rule_tac x="s" in exI)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    91
  apply auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    92
  apply (erule_tac x=y in allE)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    93
  apply auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    94
  done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    95
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    96
lemma real_le_lsqrt: "0 <= x \<Longrightarrow> 0 <= y \<Longrightarrow> x <= y^2 ==> sqrt x <= y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    97
  using real_sqrt_le_iff[of x "y^2"] by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    98
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
    99
lemma real_le_rsqrt: "x^2 \<le> y \<Longrightarrow> x \<le> sqrt y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   100
  using real_sqrt_le_mono[of "x^2" y] by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   101
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   102
lemma real_less_rsqrt: "x^2 < y \<Longrightarrow> x < sqrt y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   103
  using real_sqrt_less_mono[of "x^2" y] by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   104
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   105
lemma sqrt_even_pow2: assumes n: "even n"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   106
  shows "sqrt(2 ^ n) = 2 ^ (n div 2)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   107
proof-
36362
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
   108
  from n obtain m where m: "n = 2*m" unfolding even_mult_two_ex ..
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   109
  from m  have "sqrt(2 ^ n) = sqrt ((2 ^ m) ^ 2)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   110
    by (simp only: power_mult[symmetric] mult_commute)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   111
  then show ?thesis  using m by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   112
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   113
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   114
lemma real_div_sqrt: "0 <= x ==> x / sqrt(x) = sqrt(x)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   115
  apply (cases "x = 0", simp_all)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   116
  using sqrt_divide_self_eq[of x]
36362
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
   117
  apply (simp add: inverse_eq_divide field_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   118
  done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   119
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   120
text{* Hence derive more interesting properties of the norm. *}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   121
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   122
(* FIXME: same as norm_scaleR
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   123
lemma norm_mul[simp]: "norm(a *\<^sub>R x) = abs(a) * norm x"
36362
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
   124
  by (simp add: norm_vector_def setL2_right_distrib abs_mult)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   125
*)
36362
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
   126
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   127
lemma norm_eq_0_dot: "(norm x = 0) \<longleftrightarrow> (inner x x = (0::real))"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   128
  by (simp add: setL2_def power2_eq_square)
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   129
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   130
lemma norm_cauchy_schwarz:
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   131
  shows "inner x y <= norm x * norm y"
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   132
  using Cauchy_Schwarz_ineq2[of x y] by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   133
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   134
lemma norm_cauchy_schwarz_abs:
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   135
  shows "\<bar>inner x y\<bar> \<le> norm x * norm y"
36585
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   136
  by (rule Cauchy_Schwarz_ineq2)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   137
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   138
lemma norm_triangle_sub:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   139
  fixes x y :: "'a::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   140
  shows "norm x \<le> norm y  + norm (x - y)"
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
   141
  using norm_triangle_ineq[of "y" "x - y"] by (simp add: field_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   142
34291
4e896680897e finite annotation on cartesian product is now implicit.
hoelzl
parents: 34289
diff changeset
   143
lemma real_abs_norm: "\<bar>norm x\<bar> = norm x"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   144
  by (rule abs_norm_cancel)
36585
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   145
lemma real_abs_sub_norm: "\<bar>norm x - norm y\<bar> <= norm(x - y)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   146
  by (rule norm_triangle_ineq3)
36585
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   147
lemma norm_le: "norm(x) <= norm(y) \<longleftrightarrow> x \<bullet> x <= y \<bullet> y"
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   148
  by (simp add: norm_eq_sqrt_inner) 
36585
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   149
lemma norm_lt: "norm(x) < norm(y) \<longleftrightarrow> x \<bullet> x < y \<bullet> y"
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   150
  by (simp add: norm_eq_sqrt_inner)
36585
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   151
lemma norm_eq: "norm(x) = norm (y) \<longleftrightarrow> x \<bullet> x = y \<bullet> y"
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   152
  apply(subst order_eq_iff) unfolding norm_le by auto
36585
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   153
lemma norm_eq_1: "norm(x) = 1 \<longleftrightarrow> x \<bullet> x = 1"
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   154
  unfolding norm_eq_sqrt_inner by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   155
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   156
text{* Squaring equations and inequalities involving norms.  *}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   157
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   158
lemma dot_square_norm: "x \<bullet> x = norm(x)^2"
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   159
  by (simp add: norm_eq_sqrt_inner)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   160
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   161
lemma norm_eq_square: "norm(x) = a \<longleftrightarrow> 0 <= a \<and> x \<bullet> x = a^2"
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   162
  by (auto simp add: norm_eq_sqrt_inner)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   163
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   164
lemma real_abs_le_square_iff: "\<bar>x\<bar> \<le> \<bar>y\<bar> \<longleftrightarrow> (x::real)^2 \<le> y^2"
36362
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
   165
proof
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
   166
  assume "\<bar>x\<bar> \<le> \<bar>y\<bar>"
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
   167
  then have "\<bar>x\<bar>\<twosuperior> \<le> \<bar>y\<bar>\<twosuperior>" by (rule power_mono, simp)
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
   168
  then show "x\<twosuperior> \<le> y\<twosuperior>" by simp
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
   169
next
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
   170
  assume "x\<twosuperior> \<le> y\<twosuperior>"
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
   171
  then have "sqrt (x\<twosuperior>) \<le> sqrt (y\<twosuperior>)" by (rule real_sqrt_le_mono)
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
   172
  then show "\<bar>x\<bar> \<le> \<bar>y\<bar>" by simp
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   173
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   174
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   175
lemma norm_le_square: "norm(x) <= a \<longleftrightarrow> 0 <= a \<and> x \<bullet> x <= a^2"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   176
  apply (simp add: dot_square_norm real_abs_le_square_iff[symmetric])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   177
  using norm_ge_zero[of x]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   178
  apply arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   179
  done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   180
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   181
lemma norm_ge_square: "norm(x) >= a \<longleftrightarrow> a <= 0 \<or> x \<bullet> x >= a ^ 2"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   182
  apply (simp add: dot_square_norm real_abs_le_square_iff[symmetric])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   183
  using norm_ge_zero[of x]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   184
  apply arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   185
  done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   186
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   187
lemma norm_lt_square: "norm(x) < a \<longleftrightarrow> 0 < a \<and> x \<bullet> x < a^2"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   188
  by (metis not_le norm_ge_square)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   189
lemma norm_gt_square: "norm(x) > a \<longleftrightarrow> a < 0 \<or> x \<bullet> x > a^2"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   190
  by (metis norm_le_square not_less)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   191
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   192
text{* Dot product in terms of the norm rather than conversely. *}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   193
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   194
lemmas inner_simps = inner.add_left inner.add_right inner.diff_right inner.diff_left 
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   195
inner.scaleR_left inner.scaleR_right
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   196
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   197
lemma dot_norm: "x \<bullet> y = (norm(x + y) ^2 - norm x ^ 2 - norm y ^ 2) / 2"
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   198
  unfolding power2_norm_eq_inner inner_simps inner_commute by auto 
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   199
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   200
lemma dot_norm_neg: "x \<bullet> y = ((norm x ^ 2 + norm y ^ 2) - norm(x - y) ^ 2) / 2"
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
   201
  unfolding power2_norm_eq_inner inner_simps inner_commute by(auto simp add:algebra_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   202
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   203
text{* Equality of vectors in terms of @{term "op \<bullet>"} products.    *}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   204
36585
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   205
lemma vector_eq: "x = y \<longleftrightarrow> x \<bullet> x = x \<bullet> y \<and> y \<bullet> y = x \<bullet> x" (is "?lhs \<longleftrightarrow> ?rhs")
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   206
proof
36585
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   207
  assume ?lhs then show ?rhs by simp
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   208
next
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   209
  assume ?rhs
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   210
  then have "x \<bullet> x - x \<bullet> y = 0 \<and> x \<bullet> y - y \<bullet> y = 0" by simp
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   211
  hence "x \<bullet> (x - y) = 0 \<and> y \<bullet> (x - y) = 0" by (simp add: inner_simps inner_commute)
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
   212
  then have "(x - y) \<bullet> (x - y) = 0" by (simp add: field_simps inner_simps inner_commute)
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   213
  then show "x = y" by (simp)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   214
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   215
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   216
subsection{* General linear decision procedure for normed spaces. *}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   217
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   218
lemma norm_cmul_rule_thm:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   219
  fixes x :: "'a::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   220
  shows "b >= norm(x) ==> \<bar>c\<bar> * b >= norm(scaleR c x)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   221
  unfolding norm_scaleR
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   222
  apply (erule mult_mono1)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   223
  apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   224
  done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   225
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   226
  (* FIXME: Move all these theorems into the ML code using lemma antiquotation *)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   227
lemma norm_add_rule_thm:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   228
  fixes x1 x2 :: "'a::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   229
  shows "norm x1 \<le> b1 \<Longrightarrow> norm x2 \<le> b2 \<Longrightarrow> norm (x1 + x2) \<le> b1 + b2"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   230
  by (rule order_trans [OF norm_triangle_ineq add_mono])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   231
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34964
diff changeset
   232
lemma ge_iff_diff_ge_0: "(a::'a::linordered_ring) \<ge> b == a - b \<ge> 0"
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
   233
  by (simp add: field_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   234
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   235
lemma pth_1:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   236
  fixes x :: "'a::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   237
  shows "x == scaleR 1 x" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   238
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   239
lemma pth_2:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   240
  fixes x :: "'a::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   241
  shows "x - y == x + -y" by (atomize (full)) simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   242
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   243
lemma pth_3:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   244
  fixes x :: "'a::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   245
  shows "- x == scaleR (-1) x" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   246
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   247
lemma pth_4:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   248
  fixes x :: "'a::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   249
  shows "scaleR 0 x == 0" and "scaleR c 0 = (0::'a)" by simp_all
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   250
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   251
lemma pth_5:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   252
  fixes x :: "'a::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   253
  shows "scaleR c (scaleR d x) == scaleR (c * d) x" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   254
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   255
lemma pth_6:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   256
  fixes x :: "'a::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   257
  shows "scaleR c (x + y) == scaleR c x + scaleR c y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   258
  by (simp add: scaleR_right_distrib)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   259
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   260
lemma pth_7:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   261
  fixes x :: "'a::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   262
  shows "0 + x == x" and "x + 0 == x" by simp_all
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   263
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   264
lemma pth_8:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   265
  fixes x :: "'a::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   266
  shows "scaleR c x + scaleR d x == scaleR (c + d) x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   267
  by (simp add: scaleR_left_distrib)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   268
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   269
lemma pth_9:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   270
  fixes x :: "'a::real_normed_vector" shows
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   271
  "(scaleR c x + z) + scaleR d x == scaleR (c + d) x + z"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   272
  "scaleR c x + (scaleR d x + z) == scaleR (c + d) x + z"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   273
  "(scaleR c x + w) + (scaleR d x + z) == scaleR (c + d) x + (w + z)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   274
  by (simp_all add: algebra_simps)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   275
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   276
lemma pth_a:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   277
  fixes x :: "'a::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   278
  shows "scaleR 0 x + y == y" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   279
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   280
lemma pth_b:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   281
  fixes x :: "'a::real_normed_vector" shows
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   282
  "scaleR c x + scaleR d y == scaleR c x + scaleR d y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   283
  "(scaleR c x + z) + scaleR d y == scaleR c x + (z + scaleR d y)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   284
  "scaleR c x + (scaleR d y + z) == scaleR c x + (scaleR d y + z)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   285
  "(scaleR c x + w) + (scaleR d y + z) == scaleR c x + (w + (scaleR d y + z))"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   286
  by (simp_all add: algebra_simps)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   287
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   288
lemma pth_c:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   289
  fixes x :: "'a::real_normed_vector" shows
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   290
  "scaleR c x + scaleR d y == scaleR d y + scaleR c x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   291
  "(scaleR c x + z) + scaleR d y == scaleR d y + (scaleR c x + z)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   292
  "scaleR c x + (scaleR d y + z) == scaleR d y + (scaleR c x + z)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   293
  "(scaleR c x + w) + (scaleR d y + z) == scaleR d y + ((scaleR c x + w) + z)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   294
  by (simp_all add: algebra_simps)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   295
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   296
lemma pth_d:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   297
  fixes x :: "'a::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   298
  shows "x + 0 == x" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   299
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   300
lemma norm_imp_pos_and_ge:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   301
  fixes x :: "'a::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   302
  shows "norm x == n \<Longrightarrow> norm x \<ge> 0 \<and> n \<ge> norm x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   303
  by atomize auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   304
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   305
lemma real_eq_0_iff_le_ge_0: "(x::real) = 0 == x \<ge> 0 \<and> -x \<ge> 0" by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   306
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   307
lemma norm_pths:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   308
  fixes x :: "'a::real_normed_vector" shows
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   309
  "x = y \<longleftrightarrow> norm (x - y) \<le> 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   310
  "x \<noteq> y \<longleftrightarrow> \<not> (norm (x - y) \<le> 0)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   311
  using norm_ge_zero[of "x - y"] by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   312
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   313
use "normarith.ML"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   314
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   315
method_setup norm = {* Scan.succeed (SIMPLE_METHOD' o NormArith.norm_arith_tac)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   316
*} "Proves simple linear statements about vector norms"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   317
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   318
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   319
text{* Hence more metric properties. *}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   320
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   321
lemma dist_triangle_alt:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   322
  fixes x y z :: "'a::metric_space"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   323
  shows "dist y z <= dist x y + dist x z"
36585
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   324
by (rule dist_triangle3)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   325
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   326
lemma dist_pos_lt:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   327
  fixes x y :: "'a::metric_space"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   328
  shows "x \<noteq> y ==> 0 < dist x y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   329
by (simp add: zero_less_dist_iff)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   330
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   331
lemma dist_nz:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   332
  fixes x y :: "'a::metric_space"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   333
  shows "x \<noteq> y \<longleftrightarrow> 0 < dist x y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   334
by (simp add: zero_less_dist_iff)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   335
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   336
lemma dist_triangle_le:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   337
  fixes x y z :: "'a::metric_space"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   338
  shows "dist x z + dist y z <= e \<Longrightarrow> dist x y <= e"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   339
by (rule order_trans [OF dist_triangle2])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   340
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   341
lemma dist_triangle_lt:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   342
  fixes x y z :: "'a::metric_space"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   343
  shows "dist x z + dist y z < e ==> dist x y < e"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   344
by (rule le_less_trans [OF dist_triangle2])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   345
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   346
lemma dist_triangle_half_l:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   347
  fixes x1 x2 y :: "'a::metric_space"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   348
  shows "dist x1 y < e / 2 \<Longrightarrow> dist x2 y < e / 2 \<Longrightarrow> dist x1 x2 < e"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   349
by (rule dist_triangle_lt [where z=y], simp)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   350
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   351
lemma dist_triangle_half_r:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   352
  fixes x1 x2 y :: "'a::metric_space"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   353
  shows "dist y x1 < e / 2 \<Longrightarrow> dist y x2 < e / 2 \<Longrightarrow> dist x1 x2 < e"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   354
by (rule dist_triangle_half_l, simp_all add: dist_commute)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   355
35172
579dd5570f96 Added integration to Multivariate-Analysis (upto FTC)
himmelma
parents: 35150
diff changeset
   356
579dd5570f96 Added integration to Multivariate-Analysis (upto FTC)
himmelma
parents: 35150
diff changeset
   357
lemma norm_triangle_half_r:
579dd5570f96 Added integration to Multivariate-Analysis (upto FTC)
himmelma
parents: 35150
diff changeset
   358
  shows "norm (y - x1) < e / 2 \<Longrightarrow> norm (y - x2) < e / 2 \<Longrightarrow> norm (x1 - x2) < e"
36587
534418d8d494 remove redundant lemma vector_dist_norm
huffman
parents: 36586
diff changeset
   359
  using dist_triangle_half_r unfolding dist_norm[THEN sym] by auto
35172
579dd5570f96 Added integration to Multivariate-Analysis (upto FTC)
himmelma
parents: 35150
diff changeset
   360
579dd5570f96 Added integration to Multivariate-Analysis (upto FTC)
himmelma
parents: 35150
diff changeset
   361
lemma norm_triangle_half_l: assumes "norm (x - y) < e / 2" "norm (x' - (y)) < e / 2" 
579dd5570f96 Added integration to Multivariate-Analysis (upto FTC)
himmelma
parents: 35150
diff changeset
   362
  shows "norm (x - x') < e"
36587
534418d8d494 remove redundant lemma vector_dist_norm
huffman
parents: 36586
diff changeset
   363
  using dist_triangle_half_l[OF assms[unfolded dist_norm[THEN sym]]]
534418d8d494 remove redundant lemma vector_dist_norm
huffman
parents: 36586
diff changeset
   364
  unfolding dist_norm[THEN sym] .
35172
579dd5570f96 Added integration to Multivariate-Analysis (upto FTC)
himmelma
parents: 35150
diff changeset
   365
579dd5570f96 Added integration to Multivariate-Analysis (upto FTC)
himmelma
parents: 35150
diff changeset
   366
lemma norm_triangle_le: "norm(x) + norm y <= e ==> norm(x + y) <= e"
579dd5570f96 Added integration to Multivariate-Analysis (upto FTC)
himmelma
parents: 35150
diff changeset
   367
  by (metis order_trans norm_triangle_ineq)
579dd5570f96 Added integration to Multivariate-Analysis (upto FTC)
himmelma
parents: 35150
diff changeset
   368
579dd5570f96 Added integration to Multivariate-Analysis (upto FTC)
himmelma
parents: 35150
diff changeset
   369
lemma norm_triangle_lt: "norm(x) + norm(y) < e ==> norm(x + y) < e"
579dd5570f96 Added integration to Multivariate-Analysis (upto FTC)
himmelma
parents: 35150
diff changeset
   370
  by (metis basic_trans_rules(21) norm_triangle_ineq)
579dd5570f96 Added integration to Multivariate-Analysis (upto FTC)
himmelma
parents: 35150
diff changeset
   371
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   372
lemma dist_triangle_add:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   373
  fixes x y x' y' :: "'a::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   374
  shows "dist (x + y) (x' + y') <= dist x x' + dist y y'"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   375
  by norm
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   376
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   377
lemma dist_triangle_add_half:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   378
  fixes x x' y y' :: "'a::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   379
  shows "dist x x' < e / 2 \<Longrightarrow> dist y y' < e / 2 \<Longrightarrow> dist(x + y) (x' + y') < e"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   380
  by norm
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   381
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   382
lemma setsum_clauses:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   383
  shows "setsum f {} = 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   384
  and "finite S \<Longrightarrow> setsum f (insert x S) =
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   385
                 (if x \<in> S then setsum f S else f x + setsum f S)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   386
  by (auto simp add: insert_absorb)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   387
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   388
lemma setsum_norm:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   389
  fixes f :: "'a \<Rightarrow> 'b::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   390
  assumes fS: "finite S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   391
  shows "norm (setsum f S) <= setsum (\<lambda>x. norm(f x)) S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   392
proof(induct rule: finite_induct[OF fS])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   393
  case 1 thus ?case by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   394
next
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   395
  case (2 x S)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   396
  from "2.hyps" have "norm (setsum f (insert x S)) \<le> norm (f x) + norm (setsum f S)" by (simp add: norm_triangle_ineq)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   397
  also have "\<dots> \<le> norm (f x) + setsum (\<lambda>x. norm(f x)) S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   398
    using "2.hyps" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   399
  finally  show ?case  using "2.hyps" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   400
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   401
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   402
lemma setsum_norm_le:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   403
  fixes f :: "'a \<Rightarrow> 'b::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   404
  assumes fS: "finite S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   405
  and fg: "\<forall>x \<in> S. norm (f x) \<le> g x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   406
  shows "norm (setsum f S) \<le> setsum g S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   407
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   408
  from fg have "setsum (\<lambda>x. norm(f x)) S <= setsum g S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   409
    by - (rule setsum_mono, simp)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   410
  then show ?thesis using setsum_norm[OF fS, of f] fg
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   411
    by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   412
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   413
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   414
lemma setsum_norm_bound:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   415
  fixes f :: "'a \<Rightarrow> 'b::real_normed_vector"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   416
  assumes fS: "finite S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   417
  and K: "\<forall>x \<in> S. norm (f x) \<le> K"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   418
  shows "norm (setsum f S) \<le> of_nat (card S) * K"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   419
  using setsum_norm_le[OF fS K] setsum_constant[symmetric]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   420
  by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   421
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   422
lemma setsum_group:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   423
  assumes fS: "finite S" and fT: "finite T" and fST: "f ` S \<subseteq> T"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   424
  shows "setsum (\<lambda>y. setsum g {x. x\<in> S \<and> f x = y}) T = setsum g S"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   425
  apply (subst setsum_image_gen[OF fS, of g f])
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   426
  apply (rule setsum_mono_zero_right[OF fT fST])
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   427
  by (auto intro: setsum_0')
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   428
36585
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   429
lemma dot_lsum: "finite S \<Longrightarrow> setsum f S \<bullet> y = setsum (\<lambda>x. f x \<bullet> y) S "
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   430
  apply(induct rule: finite_induct) by(auto simp add: inner_simps)
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   431
36585
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   432
lemma dot_rsum: "finite S \<Longrightarrow> y \<bullet> setsum f S = setsum (\<lambda>x. y \<bullet> f x) S "
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   433
  apply(induct rule: finite_induct) by(auto simp add: inner_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   434
36585
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   435
lemma vector_eq_ldot: "(\<forall>x. x \<bullet> y = x \<bullet> z) \<longleftrightarrow> y = z"
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   436
proof
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   437
  assume "\<forall>x. x \<bullet> y = x \<bullet> z"
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   438
  hence "\<forall>x. x \<bullet> (y - z) = 0" by (simp add: inner_simps)
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   439
  hence "(y - z) \<bullet> (y - z) = 0" ..
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   440
  thus "y = z" by simp
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   441
qed simp
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   442
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   443
lemma vector_eq_rdot: "(\<forall>z. x \<bullet> z = y \<bullet> z) \<longleftrightarrow> x = y"
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   444
proof
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   445
  assume "\<forall>z. x \<bullet> z = y \<bullet> z"
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   446
  hence "\<forall>z. (x - y) \<bullet> z = 0" by (simp add: inner_simps)
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   447
  hence "(x - y) \<bullet> (x - y) = 0" ..
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   448
  thus "x = y" by simp
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   449
qed simp
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   450
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   451
subsection{* Orthogonality. *}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   452
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   453
context real_inner
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   454
begin
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   455
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   456
definition "orthogonal x y \<longleftrightarrow> (x \<bullet> y = 0)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   457
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   458
lemma orthogonal_clauses:
36588
8175a688c5e3 generalize orthogonal_clauses
huffman
parents: 36587
diff changeset
   459
  "orthogonal a 0"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   460
  "orthogonal a x \<Longrightarrow> orthogonal a (c *\<^sub>R x)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   461
  "orthogonal a x \<Longrightarrow> orthogonal a (-x)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   462
  "orthogonal a x \<Longrightarrow> orthogonal a y \<Longrightarrow> orthogonal a (x + y)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   463
  "orthogonal a x \<Longrightarrow> orthogonal a y \<Longrightarrow> orthogonal a (x - y)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   464
  "orthogonal 0 a"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   465
  "orthogonal x a \<Longrightarrow> orthogonal (c *\<^sub>R x) a"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   466
  "orthogonal x a \<Longrightarrow> orthogonal (-x) a"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   467
  "orthogonal x a \<Longrightarrow> orthogonal y a \<Longrightarrow> orthogonal (x + y) a"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   468
  "orthogonal x a \<Longrightarrow> orthogonal y a \<Longrightarrow> orthogonal (x - y) a"
37606
b47dd044a1f1 inner_simps is not enough, need also local facts
haftmann
parents: 37489
diff changeset
   469
  unfolding orthogonal_def inner_simps inner_add_left inner_add_right inner_diff_left inner_diff_right (*FIXME*) by auto
b47dd044a1f1 inner_simps is not enough, need also local facts
haftmann
parents: 37489
diff changeset
   470
 
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   471
end
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   472
36585
f2faab7b46e7 generalize some euclidean space lemmas
huffman
parents: 36581
diff changeset
   473
lemma orthogonal_commute: "orthogonal x y \<longleftrightarrow> orthogonal y x"
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
   474
  by (simp add: orthogonal_def inner_commute)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   475
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   476
subsection{* Linear functions. *}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   477
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   478
definition
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   479
  linear :: "('a::real_vector \<Rightarrow> 'b::real_vector) \<Rightarrow> bool" where
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   480
  "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)"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   481
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   482
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"
33714
eb2574ac4173 Added new lemmas to Euclidean Space by Robert Himmelmann
hoelzl
parents: 33270
diff changeset
   483
  shows "linear f" using assms unfolding linear_def by auto
eb2574ac4173 Added new lemmas to Euclidean Space by Robert Himmelmann
hoelzl
parents: 33270
diff changeset
   484
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   485
lemma linear_compose_cmul: "linear f ==> linear (\<lambda>x. c *\<^sub>R f x)"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   486
  by (simp add: linear_def algebra_simps)
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   487
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   488
lemma linear_compose_neg: "linear f ==> linear (\<lambda>x. -(f(x)))"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   489
  by (simp add: linear_def)
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   490
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   491
lemma linear_compose_add: "linear f \<Longrightarrow> linear g ==> linear (\<lambda>x. f(x) + g(x))"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   492
  by (simp add: linear_def algebra_simps)
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   493
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   494
lemma linear_compose_sub: "linear f \<Longrightarrow> linear g ==> linear (\<lambda>x. f x - g x)"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   495
  by (simp add: linear_def algebra_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   496
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   497
lemma linear_compose: "linear f \<Longrightarrow> linear g ==> linear (g o f)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   498
  by (simp add: linear_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   499
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   500
lemma linear_id: "linear id" by (simp add: linear_def id_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   501
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   502
lemma linear_zero: "linear (\<lambda>x. 0)" by (simp add: linear_def)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   503
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   504
lemma linear_compose_setsum:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   505
  assumes fS: "finite S" and lS: "\<forall>a \<in> S. linear (f a)"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   506
  shows "linear(\<lambda>x. setsum (\<lambda>a. f a x) S)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   507
  using lS
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   508
  apply (induct rule: finite_induct[OF fS])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   509
  by (auto simp add: linear_zero intro: linear_compose_add)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   510
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   511
lemma linear_0: "linear f \<Longrightarrow> f 0 = 0"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   512
  unfolding linear_def
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   513
  apply clarsimp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   514
  apply (erule allE[where x="0::'a"])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   515
  apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   516
  done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   517
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   518
lemma linear_cmul: "linear f ==> f(c *\<^sub>R x) = c *\<^sub>R f x" by (simp add: linear_def)
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   519
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   520
lemma linear_neg: "linear f ==> f (-x) = - f x"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   521
  using linear_cmul [where c="-1"] by simp
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   522
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   523
lemma linear_add: "linear f ==> f(x + y) = f x + f y" by (metis linear_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   524
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   525
lemma linear_sub: "linear f ==> f(x - y) = f x - f y"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   526
  by (simp add: diff_def linear_add linear_neg)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   527
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   528
lemma linear_setsum:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   529
  assumes lf: "linear f" and fS: "finite S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   530
  shows "f (setsum g S) = setsum (f o g) S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   531
proof (induct rule: finite_induct[OF fS])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   532
  case 1 thus ?case by (simp add: linear_0[OF lf])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   533
next
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   534
  case (2 x F)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   535
  have "f (setsum g (insert x F)) = f (g x + setsum g F)" using "2.hyps"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   536
    by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   537
  also have "\<dots> = f (g x) + f (setsum g F)" using linear_add[OF lf] by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   538
  also have "\<dots> = setsum (f o g) (insert x F)" using "2.hyps" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   539
  finally show ?case .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   540
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   541
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   542
lemma linear_setsum_mul:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   543
  assumes lf: "linear f" and fS: "finite S"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   544
  shows "f (setsum (\<lambda>i. c i *\<^sub>R v i) S) = setsum (\<lambda>i. c i *\<^sub>R f (v i)) S"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   545
  using linear_setsum[OF lf fS, of "\<lambda>i. c i *\<^sub>R v i" , unfolded o_def]
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   546
  linear_cmul[OF lf] by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   547
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   548
lemma linear_injective_0:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   549
  assumes lf: "linear f"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   550
  shows "inj f \<longleftrightarrow> (\<forall>x. f x = 0 \<longrightarrow> x = 0)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   551
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   552
  have "inj f \<longleftrightarrow> (\<forall> x y. f x = f y \<longrightarrow> x = y)" by (simp add: inj_on_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   553
  also have "\<dots> \<longleftrightarrow> (\<forall> x y. f x - f y = 0 \<longrightarrow> x - y = 0)" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   554
  also have "\<dots> \<longleftrightarrow> (\<forall> x y. f (x - y) = 0 \<longrightarrow> x - y = 0)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   555
    by (simp add: linear_sub[OF lf])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   556
  also have "\<dots> \<longleftrightarrow> (\<forall> x. f x = 0 \<longrightarrow> x = 0)" by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   557
  finally show ?thesis .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   558
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   559
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   560
subsection{* Bilinear functions. *}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   561
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   562
definition "bilinear f \<longleftrightarrow> (\<forall>x. linear(\<lambda>y. f x y)) \<and> (\<forall>y. linear(\<lambda>x. f x y))"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   563
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   564
lemma bilinear_ladd: "bilinear h ==> h (x + y) z = (h x z) + (h y z)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   565
  by (simp add: bilinear_def linear_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   566
lemma bilinear_radd: "bilinear h ==> h x (y + z) = (h x y) + (h x z)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   567
  by (simp add: bilinear_def linear_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   568
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   569
lemma bilinear_lmul: "bilinear h ==> h (c *\<^sub>R x) y = c *\<^sub>R (h x y)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   570
  by (simp add: bilinear_def linear_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   571
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   572
lemma bilinear_rmul: "bilinear h ==> h x (c *\<^sub>R y) = c *\<^sub>R (h x y)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   573
  by (simp add: bilinear_def linear_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   574
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   575
lemma bilinear_lneg: "bilinear h ==> h (- x) y = -(h x y)"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   576
  by (simp only: scaleR_minus1_left [symmetric] bilinear_lmul)
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   577
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   578
lemma bilinear_rneg: "bilinear h ==> h x (- y) = - h x y"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   579
  by (simp only: scaleR_minus1_left [symmetric] bilinear_rmul)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   580
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   581
lemma  (in ab_group_add) eq_add_iff: "x = x + y \<longleftrightarrow> y = 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   582
  using add_imp_eq[of x y 0] by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   583
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   584
lemma bilinear_lzero:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   585
  assumes bh: "bilinear h" shows "h 0 x = 0"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   586
  using bilinear_ladd[OF bh, of 0 0 x]
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
   587
    by (simp add: eq_add_iff field_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   588
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   589
lemma bilinear_rzero:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   590
  assumes bh: "bilinear h" shows "h x 0 = 0"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   591
  using bilinear_radd[OF bh, of x 0 0 ]
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
   592
    by (simp add: eq_add_iff field_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   593
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   594
lemma bilinear_lsub: "bilinear h ==> h (x - y) z = h x z - h y z"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   595
  by (simp  add: diff_def bilinear_ladd bilinear_lneg)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   596
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   597
lemma bilinear_rsub: "bilinear h ==> h z (x - y) = h z x - h z y"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   598
  by (simp  add: diff_def bilinear_radd bilinear_rneg)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   599
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   600
lemma bilinear_setsum:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   601
  assumes bh: "bilinear h" and fS: "finite S" and fT: "finite T"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   602
  shows "h (setsum f S) (setsum g T) = setsum (\<lambda>(i,j). h (f i) (g j)) (S \<times> T) "
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   603
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   604
  have "h (setsum f S) (setsum g T) = setsum (\<lambda>x. h (f x) (setsum g T)) S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   605
    apply (rule linear_setsum[unfolded o_def])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   606
    using bh fS by (auto simp add: bilinear_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   607
  also have "\<dots> = setsum (\<lambda>x. setsum (\<lambda>y. h (f x) (g y)) T) S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   608
    apply (rule setsum_cong, simp)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   609
    apply (rule linear_setsum[unfolded o_def])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   610
    using bh fT by (auto simp add: bilinear_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   611
  finally show ?thesis unfolding setsum_cartesian_product .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   612
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   613
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   614
subsection{* Adjoints. *}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   615
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   616
definition "adjoint f = (SOME f'. \<forall>x y. f x \<bullet> y = x \<bullet> f' y)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   617
36596
5ef18d433634 generalize lemma adjoint_unique; simplify some proofs
huffman
parents: 36595
diff changeset
   618
lemma adjoint_unique:
5ef18d433634 generalize lemma adjoint_unique; simplify some proofs
huffman
parents: 36595
diff changeset
   619
  assumes "\<forall>x y. inner (f x) y = inner x (g y)"
5ef18d433634 generalize lemma adjoint_unique; simplify some proofs
huffman
parents: 36595
diff changeset
   620
  shows "adjoint f = g"
5ef18d433634 generalize lemma adjoint_unique; simplify some proofs
huffman
parents: 36595
diff changeset
   621
unfolding adjoint_def
5ef18d433634 generalize lemma adjoint_unique; simplify some proofs
huffman
parents: 36595
diff changeset
   622
proof (rule some_equality)
5ef18d433634 generalize lemma adjoint_unique; simplify some proofs
huffman
parents: 36595
diff changeset
   623
  show "\<forall>x y. inner (f x) y = inner x (g y)" using assms .
5ef18d433634 generalize lemma adjoint_unique; simplify some proofs
huffman
parents: 36595
diff changeset
   624
next
5ef18d433634 generalize lemma adjoint_unique; simplify some proofs
huffman
parents: 36595
diff changeset
   625
  fix h assume "\<forall>x y. inner (f x) y = inner x (h y)"
5ef18d433634 generalize lemma adjoint_unique; simplify some proofs
huffman
parents: 36595
diff changeset
   626
  hence "\<forall>x y. inner x (g y) = inner x (h y)" using assms by simp
5ef18d433634 generalize lemma adjoint_unique; simplify some proofs
huffman
parents: 36595
diff changeset
   627
  hence "\<forall>x y. inner x (g y - h y) = 0" by (simp add: inner_diff_right)
5ef18d433634 generalize lemma adjoint_unique; simplify some proofs
huffman
parents: 36595
diff changeset
   628
  hence "\<forall>y. inner (g y - h y) (g y - h y) = 0" by simp
5ef18d433634 generalize lemma adjoint_unique; simplify some proofs
huffman
parents: 36595
diff changeset
   629
  hence "\<forall>y. h y = g y" by simp
5ef18d433634 generalize lemma adjoint_unique; simplify some proofs
huffman
parents: 36595
diff changeset
   630
  thus "h = g" by (simp add: ext)
5ef18d433634 generalize lemma adjoint_unique; simplify some proofs
huffman
parents: 36595
diff changeset
   631
qed
5ef18d433634 generalize lemma adjoint_unique; simplify some proofs
huffman
parents: 36595
diff changeset
   632
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   633
lemma choice_iff: "(\<forall>x. \<exists>y. P x y) \<longleftrightarrow> (\<exists>f. \<forall>x. P x (f x))" by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   634
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   635
subsection{* Interlude: Some properties of real sets *}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   636
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   637
lemma seq_mono_lemma: assumes "\<forall>(n::nat) \<ge> m. (d n :: real) < e n" and "\<forall>n \<ge> m. e n <= e m"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   638
  shows "\<forall>n \<ge> m. d n < e m"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   639
  using prems apply auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   640
  apply (erule_tac x="n" in allE)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   641
  apply (erule_tac x="n" in allE)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   642
  apply auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   643
  done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   644
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   645
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   646
lemma infinite_enumerate: assumes fS: "infinite S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   647
  shows "\<exists>r. subseq r \<and> (\<forall>n. r n \<in> S)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   648
unfolding subseq_def
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   649
using enumerate_in_set[OF fS] enumerate_mono[of _ _ S] fS by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   650
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   651
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)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   652
apply auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   653
apply (rule_tac x="d/2" in exI)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   654
apply auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   655
done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   656
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   657
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   658
lemma triangle_lemma:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   659
  assumes x: "0 <= (x::real)" and y:"0 <= y" and z: "0 <= z" and xy: "x^2 <= y^2 + z^2"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   660
  shows "x <= y + z"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   661
proof-
36362
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
   662
  have "y^2 + z^2 \<le> y^2 + 2*y*z + z^2" using z y by (simp add: mult_nonneg_nonneg)
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
   663
  with xy have th: "x ^2 \<le> (y+z)^2" by (simp add: power2_eq_square field_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   664
  from y z have yz: "y + z \<ge> 0" by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   665
  from power2_le_imp_le[OF th yz] show ?thesis .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   666
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   667
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   668
text {* TODO: move to NthRoot *}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   669
lemma sqrt_add_le_add_sqrt:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   670
  assumes x: "0 \<le> x" and y: "0 \<le> y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   671
  shows "sqrt (x + y) \<le> sqrt x + sqrt y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   672
apply (rule power2_le_imp_le)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   673
apply (simp add: real_sum_squared_expand add_nonneg_nonneg x y)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   674
apply (simp add: mult_nonneg_nonneg x y)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   675
apply (simp add: add_nonneg_nonneg x y)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   676
done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   677
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   678
subsection {* A generic notion of "hull" (convex, affine, conic hull and closure). *}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   679
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   680
definition hull :: "'a set set \<Rightarrow> 'a set \<Rightarrow> 'a set" (infixl "hull" 75) where
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   681
  "S hull s = Inter {t. t \<in> S \<and> s \<subseteq> t}"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   682
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   683
lemma hull_same: "s \<in> S \<Longrightarrow> S hull s = s"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   684
  unfolding hull_def by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   685
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   686
lemma hull_in: "(\<And>T. T \<subseteq> S ==> Inter T \<in> S) ==> (S hull s) \<in> S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   687
unfolding hull_def subset_iff by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   688
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   689
lemma hull_eq: "(\<And>T. T \<subseteq> S ==> Inter T \<in> S) ==> (S hull s) = s \<longleftrightarrow> s \<in> S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   690
using hull_same[of s S] hull_in[of S s] by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   691
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   692
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   693
lemma hull_hull: "S hull (S hull s) = S hull s"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   694
  unfolding hull_def by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   695
34964
4e8be3c04d37 Replaced vec1 and dest_vec1 by abbreviation.
hoelzl
parents: 34915
diff changeset
   696
lemma hull_subset[intro]: "s \<subseteq> (S hull s)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   697
  unfolding hull_def by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   698
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   699
lemma hull_mono: " s \<subseteq> t ==> (S hull s) \<subseteq> (S hull t)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   700
  unfolding hull_def by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   701
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   702
lemma hull_antimono: "S \<subseteq> T ==> (T hull s) \<subseteq> (S hull s)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   703
  unfolding hull_def by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   704
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   705
lemma hull_minimal: "s \<subseteq> t \<Longrightarrow> t \<in> S ==> (S hull s) \<subseteq> t"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   706
  unfolding hull_def by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   707
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   708
lemma subset_hull: "t \<in> S ==> S hull s \<subseteq> t \<longleftrightarrow>  s \<subseteq> t"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   709
  unfolding hull_def by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   710
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   711
lemma hull_unique: "s \<subseteq> t \<Longrightarrow> t \<in> S \<Longrightarrow> (\<And>t'. s \<subseteq> t' \<Longrightarrow> t' \<in> S ==> t \<subseteq> t')
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   712
           ==> (S hull s = t)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   713
unfolding hull_def by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   714
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   715
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"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   716
  using hull_minimal[of S "{x. P x}" Q]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   717
  by (auto simp add: subset_eq Collect_def mem_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   718
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   719
lemma hull_inc: "x \<in> S \<Longrightarrow> x \<in> P hull S" by (metis hull_subset subset_eq)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   720
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   721
lemma hull_union_subset: "(S hull s) \<union> (S hull t) \<subseteq> (S hull (s \<union> t))"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   722
unfolding Un_subset_iff by (metis hull_mono Un_upper1 Un_upper2)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   723
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   724
lemma hull_union: assumes T: "\<And>T. T \<subseteq> S ==> Inter T \<in> S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   725
  shows "S hull (s \<union> t) = S hull (S hull s \<union> S hull t)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   726
apply rule
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   727
apply (rule hull_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   728
unfolding Un_subset_iff
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   729
apply (metis hull_subset Un_upper1 Un_upper2 subset_trans)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   730
apply (rule hull_minimal)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   731
apply (metis hull_union_subset)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   732
apply (metis hull_in T)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   733
done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   734
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   735
lemma hull_redundant_eq: "a \<in> (S hull s) \<longleftrightarrow> (S hull (insert a s) = S hull s)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   736
  unfolding hull_def by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   737
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   738
lemma hull_redundant: "a \<in> (S hull s) ==> (S hull (insert a s) = S hull s)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   739
by (metis hull_redundant_eq)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   740
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   741
text{* Archimedian properties and useful consequences. *}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   742
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   743
lemma real_arch_simple: "\<exists>n. x <= real (n::nat)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   744
  using reals_Archimedean2[of x] apply auto by (rule_tac x="Suc n" in exI, auto)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   745
lemmas real_arch_lt = reals_Archimedean2
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   746
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   747
lemmas real_arch = reals_Archimedean3
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   748
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   749
lemma real_arch_inv: "0 < e \<longleftrightarrow> (\<exists>n::nat. n \<noteq> 0 \<and> 0 < inverse (real n) \<and> inverse (real n) < e)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   750
  using reals_Archimedean
36362
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
   751
  apply (auto simp add: field_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   752
  apply (subgoal_tac "inverse (real n) > 0")
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   753
  apply arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   754
  apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   755
  done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   756
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   757
lemma real_pow_lbound: "0 <= x ==> 1 + real n * x <= (1 + x) ^ n"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   758
proof(induct n)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   759
  case 0 thus ?case by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   760
next
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   761
  case (Suc n)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   762
  hence h: "1 + real n * x \<le> (1 + x) ^ n" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   763
  from h have p: "1 \<le> (1 + x) ^ n" using Suc.prems by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   764
  from h have "1 + real n * x + x \<le> (1 + x) ^ n + x" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   765
  also have "\<dots> \<le> (1 + x) ^ Suc n" apply (subst diff_le_0_iff_le[symmetric])
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
   766
    apply (simp add: field_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   767
    using mult_left_mono[OF p Suc.prems] by simp
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
   768
  finally show ?case  by (simp add: real_of_nat_Suc field_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   769
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   770
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   771
lemma real_arch_pow: assumes x: "1 < (x::real)" shows "\<exists>n. y < x^n"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   772
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   773
  from x have x0: "x - 1 > 0" by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   774
  from real_arch[OF x0, rule_format, of y]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   775
  obtain n::nat where n:"y < real n * (x - 1)" by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   776
  from x0 have x00: "x- 1 \<ge> 0" by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   777
  from real_pow_lbound[OF x00, of n] n
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   778
  have "y < x^n" by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   779
  then show ?thesis by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   780
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   781
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   782
lemma real_arch_pow2: "\<exists>n. (x::real) < 2^ n"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   783
  using real_arch_pow[of 2 x] by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   784
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   785
lemma real_arch_pow_inv: assumes y: "(y::real) > 0" and x1: "x < 1"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   786
  shows "\<exists>n. x^n < y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   787
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   788
  {assume x0: "x > 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   789
    from x0 x1 have ix: "1 < 1/x" by (simp add: field_simps)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   790
    from real_arch_pow[OF ix, of "1/y"]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   791
    obtain n where n: "1/y < (1/x)^n" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   792
    then
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   793
    have ?thesis using y x0 by (auto simp add: field_simps power_divide) }
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   794
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   795
  {assume "\<not> x > 0" with y x1 have ?thesis apply auto by (rule exI[where x=1], auto)}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   796
  ultimately show ?thesis by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   797
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   798
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   799
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)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   800
  by (metis real_arch_inv)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   801
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   802
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"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   803
  apply (rule forall_pos_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   804
  apply auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   805
  apply (atomize)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   806
  apply (erule_tac x="n - 1" in allE)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   807
  apply auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   808
  done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   809
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   810
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"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   811
  shows "x = 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   812
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   813
  {assume "x \<noteq> 0" with x0 have xp: "x > 0" by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   814
    from real_arch[OF xp, rule_format, of c] obtain n::nat where n: "c < real n * x"  by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   815
    with xc[rule_format, of n] have "n = 0" by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   816
    with n c have False by simp}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   817
  then show ?thesis by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   818
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   819
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
   820
subsection {* Geometric progression *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   821
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   822
lemma sum_gp_basic: "((1::'a::{field}) - x) * setsum (\<lambda>i. x^i) {0 .. n} = (1 - x^(Suc n))"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   823
  (is "?lhs = ?rhs")
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   824
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   825
  {assume x1: "x = 1" hence ?thesis by simp}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   826
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   827
  {assume x1: "x\<noteq>1"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   828
    hence x1': "x - 1 \<noteq> 0" "1 - x \<noteq> 0" "x - 1 = - (1 - x)" "- (1 - x) \<noteq> 0" by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   829
    from geometric_sum[OF x1, of "Suc n", unfolded x1']
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   830
    have "(- (1 - x)) * setsum (\<lambda>i. x^i) {0 .. n} = - (1 - x^(Suc n))"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   831
      unfolding atLeastLessThanSuc_atLeastAtMost
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
   832
      using x1' apply (auto simp only: field_simps)
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
   833
      apply (simp add: field_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   834
      done
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
   835
    then have ?thesis by (simp add: field_simps) }
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   836
  ultimately show ?thesis by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   837
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   838
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   839
lemma sum_gp_multiplied: assumes mn: "m <= n"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   840
  shows "((1::'a::{field}) - x) * setsum (op ^ x) {m..n} = x^m - x^ Suc n"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   841
  (is "?lhs = ?rhs")
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   842
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   843
  let ?S = "{0..(n - m)}"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   844
  from mn have mn': "n - m \<ge> 0" by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   845
  let ?f = "op + m"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   846
  have i: "inj_on ?f ?S" unfolding inj_on_def by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   847
  have f: "?f ` ?S = {m..n}"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   848
    using mn apply (auto simp add: image_iff Bex_def) by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   849
  have th: "op ^ x o op + m = (\<lambda>i. x^m * x^i)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   850
    by (rule ext, simp add: power_add power_mult)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   851
  from setsum_reindex[OF i, of "op ^ x", unfolded f th setsum_right_distrib[symmetric]]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   852
  have "?lhs = x^m * ((1 - x) * setsum (op ^ x) {0..n - m})" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   853
  then show ?thesis unfolding sum_gp_basic using mn
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
   854
    by (simp add: field_simps power_add[symmetric])
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   855
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   856
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   857
lemma sum_gp: "setsum (op ^ (x::'a::{field})) {m .. n} =
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   858
   (if n < m then 0 else if x = 1 then of_nat ((n + 1) - m)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   859
                    else (x^ m - x^ (Suc n)) / (1 - x))"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   860
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   861
  {assume nm: "n < m" hence ?thesis by simp}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   862
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   863
  {assume "\<not> n < m" hence nm: "m \<le> n" by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   864
    {assume x: "x = 1"  hence ?thesis by simp}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   865
    moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   866
    {assume x: "x \<noteq> 1" hence nz: "1 - x \<noteq> 0" by simp
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
   867
      from sum_gp_multiplied[OF nm, of x] nz have ?thesis by (simp add: field_simps)}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   868
    ultimately have ?thesis by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   869
  }
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   870
  ultimately show ?thesis by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   871
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   872
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   873
lemma sum_gp_offset: "setsum (op ^ (x::'a::{field})) {m .. m+n} =
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   874
  (if x = 1 then of_nat n + 1 else x^m * (1 - x^Suc n) / (1 - x))"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   875
  unfolding sum_gp[of x m "m + n"] power_Suc
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
   876
  by (simp add: field_simps power_add)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   877
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   878
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   879
subsection{* A bit of linear algebra. *}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   880
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   881
definition (in real_vector)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   882
  subspace :: "'a set \<Rightarrow> bool" where
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   883
  "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 )"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   884
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   885
definition (in real_vector) "span S = (subspace hull S)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   886
definition (in real_vector) "dependent S \<longleftrightarrow> (\<exists>a \<in> S. a \<in> span(S - {a}))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   887
abbreviation (in real_vector) "independent s == ~(dependent s)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   888
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
   889
text {* Closure properties of subspaces. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   890
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   891
lemma subspace_UNIV[simp]: "subspace(UNIV)" by (simp add: subspace_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   892
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   893
lemma (in real_vector) subspace_0: "subspace S ==> 0 \<in> S" by (metis subspace_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   894
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   895
lemma (in real_vector) subspace_add: "subspace S \<Longrightarrow> x \<in> S \<Longrightarrow> y \<in> S ==> x + y \<in> S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   896
  by (metis subspace_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   897
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   898
lemma (in real_vector) subspace_mul: "subspace S \<Longrightarrow> x \<in> S \<Longrightarrow> c *\<^sub>R x \<in> S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   899
  by (metis subspace_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   900
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   901
lemma subspace_neg: "subspace S \<Longrightarrow> x \<in> S \<Longrightarrow> - x \<in> S"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   902
  by (metis scaleR_minus1_left subspace_mul)
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   903
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   904
lemma subspace_sub: "subspace S \<Longrightarrow> x \<in> S \<Longrightarrow> y \<in> S \<Longrightarrow> x - y \<in> S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   905
  by (metis diff_def subspace_add subspace_neg)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   906
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   907
lemma (in real_vector) subspace_setsum:
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   908
  assumes sA: "subspace A" and fB: "finite B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   909
  and f: "\<forall>x\<in> B. f x \<in> A"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   910
  shows "setsum f B \<in> A"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   911
  using  fB f sA
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   912
  apply(induct rule: finite_induct[OF fB])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   913
  by (simp add: subspace_def sA, auto simp add: sA subspace_add)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   914
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   915
lemma subspace_linear_image:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   916
  assumes lf: "linear f" and sS: "subspace S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   917
  shows "subspace(f ` S)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   918
  using lf sS linear_0[OF lf]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   919
  unfolding linear_def subspace_def
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   920
  apply (auto simp add: image_iff)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   921
  apply (rule_tac x="x + y" in bexI, auto)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   922
  apply (rule_tac x="c *\<^sub>R x" in bexI, auto)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   923
  done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   924
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   925
lemma subspace_linear_preimage: "linear f ==> subspace S ==> subspace {x. f x \<in> S}"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   926
  by (auto simp add: subspace_def linear_def linear_0[of f])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   927
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   928
lemma subspace_trivial: "subspace {0}"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   929
  by (simp add: subspace_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   930
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   931
lemma (in real_vector) subspace_inter: "subspace A \<Longrightarrow> subspace B ==> subspace (A \<inter> B)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   932
  by (simp add: subspace_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   933
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   934
lemma (in real_vector) span_mono: "A \<subseteq> B ==> span A \<subseteq> span B"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   935
  by (metis span_def hull_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   936
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   937
lemma (in real_vector) subspace_span: "subspace(span S)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   938
  unfolding span_def
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   939
  apply (rule hull_in[unfolded mem_def])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   940
  apply (simp only: subspace_def Inter_iff Int_iff subset_eq)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   941
  apply auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   942
  apply (erule_tac x="X" in ballE)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   943
  apply (simp add: mem_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   944
  apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   945
  apply (erule_tac x="X" in ballE)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   946
  apply (erule_tac x="X" in ballE)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   947
  apply (erule_tac x="X" in ballE)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   948
  apply (clarsimp simp add: mem_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   949
  apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   950
  apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   951
  apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   952
  apply (erule_tac x="X" in ballE)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   953
  apply (erule_tac x="X" in ballE)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   954
  apply (simp add: mem_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   955
  apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   956
  apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   957
  done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   958
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   959
lemma (in real_vector) span_clauses:
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   960
  "a \<in> S ==> a \<in> span S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   961
  "0 \<in> span S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   962
  "x\<in> span S \<Longrightarrow> y \<in> span S ==> x + y \<in> span S"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   963
  "x \<in> span S \<Longrightarrow> c *\<^sub>R x \<in> span S"
36362
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
   964
  by (metis span_def hull_subset subset_eq)
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
   965
     (metis subspace_span subspace_def)+
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   966
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   967
lemma (in real_vector) span_induct: assumes SP: "\<And>x. x \<in> S ==> P x"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   968
  and P: "subspace P" and x: "x \<in> span S" shows "P x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   969
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   970
  from SP have SP': "S \<subseteq> P" by (simp add: mem_def subset_eq)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   971
  from P have P': "P \<in> subspace" by (simp add: mem_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   972
  from x hull_minimal[OF SP' P', unfolded span_def[symmetric]]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   973
  show "P x" by (metis mem_def subset_eq)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   974
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   975
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   976
lemma span_empty[simp]: "span {} = {0}"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   977
  apply (simp add: span_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   978
  apply (rule hull_unique)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   979
  apply (auto simp add: mem_def subspace_def)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
   980
  unfolding mem_def[of "0::'a", symmetric]
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   981
  apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   982
  done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   983
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   984
lemma (in real_vector) independent_empty[intro]: "independent {}"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   985
  by (simp add: dependent_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   986
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   987
lemma dependent_single[simp]:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   988
  "dependent {x} \<longleftrightarrow> x = 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   989
  unfolding dependent_def by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   990
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   991
lemma (in real_vector) independent_mono: "independent A \<Longrightarrow> B \<subseteq> A ==> independent B"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   992
  apply (clarsimp simp add: dependent_def span_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   993
  apply (subgoal_tac "span (B - {a}) \<le> span (A - {a})")
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   994
  apply force
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   995
  apply (rule span_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   996
  apply auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   997
  done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
   998
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
   999
lemma (in real_vector) span_subspace: "A \<subseteq> B \<Longrightarrow> B \<le> span A \<Longrightarrow>  subspace B \<Longrightarrow> span A = B"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1000
  by (metis order_antisym span_def hull_minimal mem_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1001
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1002
lemma (in real_vector) span_induct': assumes SP: "\<forall>x \<in> S. P x"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1003
  and P: "subspace P" shows "\<forall>x \<in> span S. P x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1004
  using span_induct SP P by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1005
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1006
inductive (in real_vector) span_induct_alt_help for S:: "'a \<Rightarrow> bool"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1007
  where
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1008
  span_induct_alt_help_0: "span_induct_alt_help S 0"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1009
  | span_induct_alt_help_S: "x \<in> S \<Longrightarrow> span_induct_alt_help S z \<Longrightarrow> span_induct_alt_help S (c *\<^sub>R x + z)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1010
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1011
lemma span_induct_alt':
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1012
  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"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1013
proof-
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1014
  {fix x:: "'a" assume x: "span_induct_alt_help S x"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1015
    have "h x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1016
      apply (rule span_induct_alt_help.induct[OF x])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1017
      apply (rule h0)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1018
      apply (rule hS, assumption, assumption)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1019
      done}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1020
  note th0 = this
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1021
  {fix x assume x: "x \<in> span S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1022
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1023
    have "span_induct_alt_help S x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1024
      proof(rule span_induct[where x=x and S=S])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1025
        show "x \<in> span S" using x .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1026
      next
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1027
        fix x assume xS : "x \<in> S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1028
          from span_induct_alt_help_S[OF xS span_induct_alt_help_0, of 1]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1029
          show "span_induct_alt_help S x" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1030
        next
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1031
        have "span_induct_alt_help S 0" by (rule span_induct_alt_help_0)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1032
        moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1033
        {fix x y assume h: "span_induct_alt_help S x" "span_induct_alt_help S y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1034
          from h
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1035
          have "span_induct_alt_help S (x + y)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1036
            apply (induct rule: span_induct_alt_help.induct)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1037
            apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1038
            unfolding add_assoc
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1039
            apply (rule span_induct_alt_help_S)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1040
            apply assumption
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1041
            apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1042
            done}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1043
        moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1044
        {fix c x assume xt: "span_induct_alt_help S x"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1045
          then have "span_induct_alt_help S (c *\<^sub>R x)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1046
            apply (induct rule: span_induct_alt_help.induct)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1047
            apply (simp add: span_induct_alt_help_0)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1048
            apply (simp add: scaleR_right_distrib)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1049
            apply (rule span_induct_alt_help_S)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1050
            apply assumption
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1051
            apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1052
            done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1053
        }
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1054
        ultimately show "subspace (span_induct_alt_help S)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1055
          unfolding subspace_def mem_def Ball_def by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1056
      qed}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1057
  with th0 show ?thesis by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1058
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1059
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1060
lemma span_induct_alt:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1061
  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"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1062
  shows "h x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1063
using span_induct_alt'[of h S] h0 hS x by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1064
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  1065
text {* Individual closure properties. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1066
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1067
lemma (in real_vector) span_superset: "x \<in> S ==> x \<in> span S" by (metis span_clauses(1))
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1068
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1069
lemma (in real_vector) span_0: "0 \<in> span S" by (metis subspace_span subspace_0)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1070
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1071
lemma (in real_vector) dependent_0: assumes "0\<in>A" shows "dependent A"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1072
  unfolding dependent_def apply(rule_tac x=0 in bexI)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1073
  using assms span_0 by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1074
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1075
lemma (in real_vector) span_add: "x \<in> span S \<Longrightarrow> y \<in> span S ==> x + y \<in> span S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1076
  by (metis subspace_add subspace_span)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1077
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1078
lemma (in real_vector) span_mul: "x \<in> span S ==> (c *\<^sub>R x) \<in> span S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1079
  by (metis subspace_span subspace_mul)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1080
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1081
lemma span_neg: "x \<in> span S ==> - x \<in> span S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1082
  by (metis subspace_neg subspace_span)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1083
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1084
lemma span_sub: "x \<in> span S \<Longrightarrow> y \<in> span S ==> x - y \<in> span S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1085
  by (metis subspace_span subspace_sub)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1086
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1087
lemma (in real_vector) span_setsum: "finite A \<Longrightarrow> \<forall>x \<in> A. f x \<in> span S ==> setsum f A \<in> span S"
36362
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
  1088
  by (rule subspace_setsum, rule subspace_span)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1089
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1090
lemma span_add_eq: "x \<in> span S \<Longrightarrow> x + y \<in> span S \<longleftrightarrow> y \<in> span S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1091
  apply (auto simp only: span_add span_sub)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1092
  apply (subgoal_tac "(x + y) - x \<in> span S", simp)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1093
  by (simp only: span_add span_sub)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1094
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  1095
text {* Mapping under linear image. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1096
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1097
lemma span_linear_image: assumes lf: "linear f"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1098
  shows "span (f ` S) = f ` (span S)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1099
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1100
  {fix x
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1101
    assume x: "x \<in> span (f ` S)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1102
    have "x \<in> f ` span S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1103
      apply (rule span_induct[where x=x and S = "f ` S"])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1104
      apply (clarsimp simp add: image_iff)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1105
      apply (frule span_superset)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1106
      apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1107
      apply (simp only: mem_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1108
      apply (rule subspace_linear_image[OF lf])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1109
      apply (rule subspace_span)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1110
      apply (rule x)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1111
      done}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1112
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1113
  {fix x assume x: "x \<in> span S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1114
    have th0:"(\<lambda>a. f a \<in> span (f ` S)) = {x. f x \<in> span (f ` S)}" apply (rule set_ext)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1115
      unfolding mem_def Collect_def ..
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1116
    have "f x \<in> span (f ` S)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1117
      apply (rule span_induct[where S=S])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1118
      apply (rule span_superset)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1119
      apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1120
      apply (subst th0)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1121
      apply (rule subspace_linear_preimage[OF lf subspace_span, of "f ` S"])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1122
      apply (rule x)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1123
      done}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1124
  ultimately show ?thesis by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1125
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1126
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  1127
text {* The key breakdown property. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1128
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1129
lemma span_breakdown:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1130
  assumes bS: "b \<in> S" and aS: "a \<in> span S"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1131
  shows "\<exists>k. a - k *\<^sub>R b \<in> span (S - {b})" (is "?P a")
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1132
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1133
  {fix x assume xS: "x \<in> S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1134
    {assume ab: "x = b"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1135
      then have "?P x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1136
        apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1137
        apply (rule exI[where x="1"], simp)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1138
        by (rule span_0)}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1139
    moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1140
    {assume ab: "x \<noteq> b"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1141
      then have "?P x"  using xS
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1142
        apply -
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1143
        apply (rule exI[where x=0])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1144
        apply (rule span_superset)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1145
        by simp}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1146
    ultimately have "?P x" by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1147
  moreover have "subspace ?P"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1148
    unfolding subspace_def
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1149
    apply auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1150
    apply (simp add: mem_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1151
    apply (rule exI[where x=0])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1152
    using span_0[of "S - {b}"]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1153
    apply (simp add: mem_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1154
    apply (clarsimp simp add: mem_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1155
    apply (rule_tac x="k + ka" in exI)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1156
    apply (subgoal_tac "x + y - (k + ka) *\<^sub>R b = (x - k*\<^sub>R b) + (y - ka *\<^sub>R b)")
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1157
    apply (simp only: )
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1158
    apply (rule span_add[unfolded mem_def])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1159
    apply assumption+
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1160
    apply (simp add: algebra_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1161
    apply (clarsimp simp add: mem_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1162
    apply (rule_tac x= "c*k" in exI)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1163
    apply (subgoal_tac "c *\<^sub>R x - (c * k) *\<^sub>R b = c*\<^sub>R (x - k*\<^sub>R b)")
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1164
    apply (simp only: )
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1165
    apply (rule span_mul[unfolded mem_def])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1166
    apply assumption
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1167
    by (simp add: algebra_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1168
  ultimately show "?P a" using aS span_induct[where S=S and P= "?P"] by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1169
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1170
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1171
lemma span_breakdown_eq:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1172
  "x \<in> span (insert a S) \<longleftrightarrow> (\<exists>k. (x - k *\<^sub>R a) \<in> span S)" (is "?lhs \<longleftrightarrow> ?rhs")
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1173
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1174
  {assume x: "x \<in> span (insert a S)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1175
    from x span_breakdown[of "a" "insert a S" "x"]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1176
    have ?rhs apply clarsimp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1177
      apply (rule_tac x= "k" in exI)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1178
      apply (rule set_rev_mp[of _ "span (S - {a})" _])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1179
      apply assumption
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1180
      apply (rule span_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1181
      apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1182
      done}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1183
  moreover
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1184
  { fix k assume k: "x - k *\<^sub>R a \<in> span S"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1185
    have eq: "x = (x - k *\<^sub>R a) + k *\<^sub>R a" by simp
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1186
    have "(x - k *\<^sub>R a) + k *\<^sub>R a \<in> span (insert a S)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1187
      apply (rule span_add)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1188
      apply (rule set_rev_mp[of _ "span S" _])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1189
      apply (rule k)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1190
      apply (rule span_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1191
      apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1192
      apply (rule span_mul)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1193
      apply (rule span_superset)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1194
      apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1195
      done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1196
    then have ?lhs using eq by metis}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1197
  ultimately show ?thesis by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1198
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1199
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  1200
text {* Hence some "reversal" results. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1201
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1202
lemma in_span_insert:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1203
  assumes a: "a \<in> span (insert b S)" and na: "a \<notin> span S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1204
  shows "b \<in> span (insert a S)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1205
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1206
  from span_breakdown[of b "insert b S" a, OF insertI1 a]
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1207
  obtain k where k: "a - k*\<^sub>R b \<in> span (S - {b})" by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1208
  {assume k0: "k = 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1209
    with k have "a \<in> span S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1210
      apply (simp)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1211
      apply (rule set_rev_mp)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1212
      apply assumption
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1213
      apply (rule span_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1214
      apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1215
      done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1216
    with na  have ?thesis by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1217
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1218
  {assume k0: "k \<noteq> 0"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1219
    have eq: "b = (1/k) *\<^sub>R a - ((1/k) *\<^sub>R a - b)" by simp
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1220
    from k0 have eq': "(1/k) *\<^sub>R (a - k*\<^sub>R b) = (1/k) *\<^sub>R a - b"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1221
      by (simp add: algebra_simps)
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1222
    from k have "(1/k) *\<^sub>R (a - k*\<^sub>R b) \<in> span (S - {b})"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1223
      by (rule span_mul)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1224
    hence th: "(1/k) *\<^sub>R a - b \<in> span (S - {b})"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1225
      unfolding eq' .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1226
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1227
    from k
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1228
    have ?thesis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1229
      apply (subst eq)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1230
      apply (rule span_sub)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1231
      apply (rule span_mul)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1232
      apply (rule span_superset)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1233
      apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1234
      apply (rule set_rev_mp)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1235
      apply (rule th)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1236
      apply (rule span_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1237
      using na by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1238
  ultimately show ?thesis by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1239
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1240
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1241
lemma in_span_delete:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1242
  assumes a: "a \<in> span S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1243
  and na: "a \<notin> span (S-{b})"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1244
  shows "b \<in> span (insert a (S - {b}))"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1245
  apply (rule in_span_insert)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1246
  apply (rule set_rev_mp)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1247
  apply (rule a)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1248
  apply (rule span_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1249
  apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1250
  apply (rule na)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1251
  done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1252
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  1253
text {* Transitivity property. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1254
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1255
lemma span_trans:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1256
  assumes x: "x \<in> span S" and y: "y \<in> span (insert x S)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1257
  shows "y \<in> span S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1258
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1259
  from span_breakdown[of x "insert x S" y, OF insertI1 y]
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1260
  obtain k where k: "y -k*\<^sub>R x \<in> span (S - {x})" by auto
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1261
  have eq: "y = (y - k *\<^sub>R x) + k *\<^sub>R x" by simp
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1262
  show ?thesis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1263
    apply (subst eq)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1264
    apply (rule span_add)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1265
    apply (rule set_rev_mp)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1266
    apply (rule k)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1267
    apply (rule span_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1268
    apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1269
    apply (rule span_mul)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1270
    by (rule x)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1271
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1272
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1273
lemma span_insert_0[simp]: "span (insert 0 S) = span S"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1274
  using span_mono[of S "insert 0 S"] by (auto intro: span_trans span_0)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1275
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  1276
text {* An explicit expansion is sometimes needed. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1277
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1278
lemma span_explicit:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1279
  "span P = {y. \<exists>S u. finite S \<and> S \<subseteq> P \<and> setsum (\<lambda>v. u v *\<^sub>R v) S = y}"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1280
  (is "_ = ?E" is "_ = {y. ?h y}" is "_ = {y. \<exists>S u. ?Q S u y}")
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1281
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1282
  {fix x assume x: "x \<in> ?E"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1283
    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"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1284
      by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1285
    have "x \<in> span P"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1286
      unfolding u[symmetric]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1287
      apply (rule span_setsum[OF fS])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1288
      using span_mono[OF SP]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1289
      by (auto intro: span_superset span_mul)}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1290
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1291
  have "\<forall>x \<in> span P. x \<in> ?E"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1292
    unfolding mem_def Collect_def
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1293
  proof(rule span_induct_alt')
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1294
    show "?h 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1295
      apply (rule exI[where x="{}"]) by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1296
  next
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1297
    fix c x y
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1298
    assume x: "x \<in> P" and hy: "?h y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1299
    from hy obtain S u where fS: "finite S" and SP: "S\<subseteq>P"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1300
      and u: "setsum (\<lambda>v. u v *\<^sub>R v) S = y" by blast
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1301
    let ?S = "insert x S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1302
    let ?u = "\<lambda>y. if y = x then (if x \<in> S then u y + c else c)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1303
                  else u y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1304
    from fS SP x have th0: "finite (insert x S)" "insert x S \<subseteq> P" by blast+
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1305
    {assume xS: "x \<in> S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1306
      have S1: "S = (S - {x}) \<union> {x}"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1307
        and Sss:"finite (S - {x})" "finite {x}" "(S -{x}) \<inter> {x} = {}" using xS fS by auto
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1308
      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"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1309
        using xS
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1310
        by (simp add: setsum_Un_disjoint[OF Sss, unfolded S1[symmetric]]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1311
          setsum_clauses(2)[OF fS] cong del: if_weak_cong)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1312
      also have "\<dots> = (\<Sum>v\<in>S. u v *\<^sub>R v) + c *\<^sub>R x"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1313
        apply (simp add: setsum_Un_disjoint[OF Sss, unfolded S1[symmetric]])
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1314
        by (simp add: algebra_simps)
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1315
      also have "\<dots> = c*\<^sub>R x + y"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1316
        by (simp add: add_commute u)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1317
      finally have "setsum (\<lambda>v. ?u v *\<^sub>R v) ?S = c*\<^sub>R x + y" .
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1318
    then have "?Q ?S ?u (c*\<^sub>R x + y)" using th0 by blast}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1319
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1320
  {assume xS: "x \<notin> S"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1321
    have th00: "(\<Sum>v\<in>S. (if v = x then c else u v) *\<^sub>R v) = y"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1322
      unfolding u[symmetric]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1323
      apply (rule setsum_cong2)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1324
      using xS by auto
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1325
    have "?Q ?S ?u (c*\<^sub>R x + y)" using fS xS th0
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1326
      by (simp add: th00 setsum_clauses add_commute cong del: if_weak_cong)}
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1327
  ultimately have "?Q ?S ?u (c*\<^sub>R x + y)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1328
    by (cases "x \<in> S", simp, simp)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1329
    then show "?h (c*\<^sub>R x + y)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1330
      apply -
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1331
      apply (rule exI[where x="?S"])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1332
      apply (rule exI[where x="?u"]) by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1333
  qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1334
  ultimately show ?thesis by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1335
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1336
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1337
lemma dependent_explicit:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1338
  "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")
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1339
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1340
  {assume dP: "dependent P"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1341
    then obtain a S u where aP: "a \<in> P" and fS: "finite S"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1342
      and SP: "S \<subseteq> P - {a}" and ua: "setsum (\<lambda>v. u v *\<^sub>R v) S = a"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1343
      unfolding dependent_def span_explicit by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1344
    let ?S = "insert a S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1345
    let ?u = "\<lambda>y. if y = a then - 1 else u y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1346
    let ?v = a
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1347
    from aP SP have aS: "a \<notin> S" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1348
    from fS SP aP have th0: "finite ?S" "?S \<subseteq> P" "?v \<in> ?S" "?u ?v \<noteq> 0" by auto
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1349
    have s0: "setsum (\<lambda>v. ?u v *\<^sub>R v) ?S = 0"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1350
      using fS aS
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1351
      apply (simp add: setsum_clauses field_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1352
      apply (subst (2) ua[symmetric])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1353
      apply (rule setsum_cong2)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1354
      by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1355
    with th0 have ?rhs
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1356
      apply -
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1357
      apply (rule exI[where x= "?S"])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1358
      apply (rule exI[where x= "?u"])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1359
      by clarsimp}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1360
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1361
  {fix S u v assume fS: "finite S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1362
      and SP: "S \<subseteq> P" and vS: "v \<in> S" and uv: "u v \<noteq> 0"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1363
    and u: "setsum (\<lambda>v. u v *\<^sub>R v) S = 0"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1364
    let ?a = v
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1365
    let ?S = "S - {v}"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1366
    let ?u = "\<lambda>i. (- u i) / u v"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1367
    have th0: "?a \<in> P" "finite ?S" "?S \<subseteq> P"       using fS SP vS by auto
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1368
    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"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1369
      using fS vS uv
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1370
      by (simp add: setsum_diff1 divide_inverse field_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1371
    also have "\<dots> = ?a"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1372
      unfolding scaleR_right.setsum [symmetric] u
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1373
      using uv by simp
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1374
    finally  have "setsum (\<lambda>v. ?u v *\<^sub>R v) ?S = ?a" .
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1375
    with th0 have ?lhs
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1376
      unfolding dependent_def span_explicit
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1377
      apply -
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1378
      apply (rule bexI[where x= "?a"])
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1379
      apply (simp_all del: scaleR_minus_left)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1380
      apply (rule exI[where x= "?S"])
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1381
      by (auto simp del: scaleR_minus_left)}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1382
  ultimately show ?thesis by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1383
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1384
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1385
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1386
lemma span_finite:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1387
  assumes fS: "finite S"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1388
  shows "span S = {y. \<exists>u. setsum (\<lambda>v. u v *\<^sub>R v) S = y}"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1389
  (is "_ = ?rhs")
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1390
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1391
  {fix y assume y: "y \<in> span S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1392
    from y obtain S' u where fS': "finite S'" and SS': "S' \<subseteq> S" and
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1393
      u: "setsum (\<lambda>v. u v *\<^sub>R v) S' = y" unfolding span_explicit by blast
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1394
    let ?u = "\<lambda>x. if x \<in> S' then u x else 0"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1395
    have "setsum (\<lambda>v. ?u v *\<^sub>R v) S = setsum (\<lambda>v. u v *\<^sub>R v) S'"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1396
      using SS' fS by (auto intro!: setsum_mono_zero_cong_right)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1397
    hence "setsum (\<lambda>v. ?u v *\<^sub>R v) S = y" by (metis u)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1398
    hence "y \<in> ?rhs" by auto}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1399
  moreover
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1400
  {fix y u assume u: "setsum (\<lambda>v. u v *\<^sub>R v) S = y"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1401
    then have "y \<in> span S" using fS unfolding span_explicit by auto}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1402
  ultimately show ?thesis by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1403
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1404
37664
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1405
lemma Int_Un_cancel: "(A \<union> B) \<inter> A = A" "(A \<union> B) \<inter> B = B" by auto
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1406
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1407
lemma span_union: "span (A \<union> B) = (\<lambda>(a, b). a + b) ` (span A \<times> span B)"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1408
proof safe
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1409
  fix x assume "x \<in> span (A \<union> B)"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1410
  then obtain S u where S: "finite S" "S \<subseteq> A \<union> B" and x: "x = (\<Sum>v\<in>S. u v *\<^sub>R v)"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1411
    unfolding span_explicit by auto
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1412
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1413
  let ?Sa = "\<Sum>v\<in>S\<inter>A. u v *\<^sub>R v"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1414
  let ?Sb = "(\<Sum>v\<in>S\<inter>(B - A). u v *\<^sub>R v)"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1415
  show "x \<in> (\<lambda>(a, b). a + b) ` (span A \<times> span B)"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1416
  proof
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1417
    show "x = (case (?Sa, ?Sb) of (a, b) \<Rightarrow> a + b)"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1418
      unfolding x using S
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1419
      by (simp, subst setsum_Un_disjoint[symmetric]) (auto intro!: setsum_cong)
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1420
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1421
    from S have "?Sa \<in> span A" unfolding span_explicit
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1422
      by (auto intro!: exI[of _ "S \<inter> A"])
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1423
    moreover from S have "?Sb \<in> span B" unfolding span_explicit
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1424
      by (auto intro!: exI[of _ "S \<inter> (B - A)"])
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1425
    ultimately show "(?Sa, ?Sb) \<in> span A \<times> span B" by simp
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1426
  qed
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1427
next
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1428
  fix a b assume "a \<in> span A" and "b \<in> span B"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1429
  then obtain Sa ua Sb ub where span:
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1430
    "finite Sa" "Sa \<subseteq> A" "a = (\<Sum>v\<in>Sa. ua v *\<^sub>R v)"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1431
    "finite Sb" "Sb \<subseteq> B" "b = (\<Sum>v\<in>Sb. ub v *\<^sub>R v)"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1432
    unfolding span_explicit by auto
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1433
  let "?u v" = "(if v \<in> Sa then ua v else 0) + (if v \<in> Sb then ub v else 0)"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1434
  from span have "finite (Sa \<union> Sb)" "Sa \<union> Sb \<subseteq> A \<union> B"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1435
    and "a + b = (\<Sum>v\<in>(Sa\<union>Sb). ?u v *\<^sub>R v)"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1436
    unfolding setsum_addf scaleR_left_distrib
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1437
    by (auto simp add: if_distrib cond_application_beta setsum_cases Int_Un_cancel)
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1438
  thus "a + b \<in> span (A \<union> B)"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1439
    unfolding span_explicit by (auto intro!: exI[of _ ?u])
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1440
qed
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1441
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  1442
text {* This is useful for building a basis step-by-step. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1443
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1444
lemma independent_insert:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1445
  "independent(insert a S) \<longleftrightarrow>
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1446
      (if a \<in> S then independent S
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1447
                else independent S \<and> a \<notin> span S)" (is "?lhs \<longleftrightarrow> ?rhs")
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1448
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1449
  {assume aS: "a \<in> S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1450
    hence ?thesis using insert_absorb[OF aS] by simp}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1451
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1452
  {assume aS: "a \<notin> S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1453
    {assume i: ?lhs
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1454
      then have ?rhs using aS
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1455
        apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1456
        apply (rule conjI)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1457
        apply (rule independent_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1458
        apply assumption
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1459
        apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1460
        by (simp add: dependent_def)}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1461
    moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1462
    {assume i: ?rhs
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1463
      have ?lhs using i aS
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1464
        apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1465
        apply (auto simp add: dependent_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1466
        apply (case_tac "aa = a", auto)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1467
        apply (subgoal_tac "insert a S - {aa} = insert a (S - {aa})")
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1468
        apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1469
        apply (subgoal_tac "a \<in> span (insert aa (S - {aa}))")
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1470
        apply (subgoal_tac "insert aa (S - {aa}) = S")
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1471
        apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1472
        apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1473
        apply (rule in_span_insert)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1474
        apply assumption
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1475
        apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1476
        apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1477
        done}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1478
    ultimately have ?thesis by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1479
  ultimately show ?thesis by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1480
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1481
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  1482
text {* The degenerate case of the Exchange Lemma. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1483
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1484
lemma mem_delete: "x \<in> (A - {a}) \<longleftrightarrow> x \<noteq> a \<and> x \<in> A"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1485
  by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1486
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1487
lemma span_span: "span (span A) = span A"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1488
  unfolding span_def hull_hull ..
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1489
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1490
lemma span_inc: "S \<subseteq> span S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1491
  by (metis subset_eq span_superset)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1492
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1493
lemma spanning_subset_independent:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1494
  assumes BA: "B \<subseteq> A" and iA: "independent A"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1495
  and AsB: "A \<subseteq> span B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1496
  shows "A = B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1497
proof
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1498
  from BA show "B \<subseteq> A" .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1499
next
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1500
  from span_mono[OF BA] span_mono[OF AsB]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1501
  have sAB: "span A = span B" unfolding span_span by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1502
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1503
  {fix x assume x: "x \<in> A"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1504
    from iA have th0: "x \<notin> span (A - {x})"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1505
      unfolding dependent_def using x by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1506
    from x have xsA: "x \<in> span A" by (blast intro: span_superset)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1507
    have "A - {x} \<subseteq> A" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1508
    hence th1:"span (A - {x}) \<subseteq> span A" by (metis span_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1509
    {assume xB: "x \<notin> B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1510
      from xB BA have "B \<subseteq> A -{x}" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1511
      hence "span B \<subseteq> span (A - {x})" by (metis span_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1512
      with th1 th0 sAB have "x \<notin> span A" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1513
      with x have False by (metis span_superset)}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1514
    then have "x \<in> B" by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1515
  then show "A \<subseteq> B" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1516
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1517
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  1518
text {* The general case of the Exchange Lemma, the key to what follows. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1519
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1520
lemma exchange_lemma:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1521
  assumes f:"finite t" and i: "independent s"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1522
  and sp:"s \<subseteq> span t"
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  1523
  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'"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1524
using f i sp
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34292
diff changeset
  1525
proof(induct "card (t - s)" arbitrary: s t rule: less_induct)
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34292
diff changeset
  1526
  case less
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34292
diff changeset
  1527
  note ft = `finite t` and s = `independent s` and sp = `s \<subseteq> span t`
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  1528
  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'"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1529
  let ?ths = "\<exists>t'. ?P t'"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1530
  {assume st: "s \<subseteq> t"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1531
    from st ft span_mono[OF st] have ?ths apply - apply (rule exI[where x=t])
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  1532
      by (auto intro: span_superset)}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1533
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1534
  {assume st: "t \<subseteq> s"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1535
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1536
    from spanning_subset_independent[OF st s sp]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1537
      st ft span_mono[OF st] have ?ths apply - apply (rule exI[where x=t])
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  1538
      by (auto intro: span_superset)}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1539
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1540
  {assume st: "\<not> s \<subseteq> t" "\<not> t \<subseteq> s"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1541
    from st(2) obtain b where b: "b \<in> t" "b \<notin> s" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1542
      from b have "t - {b} - s \<subset> t - s" by blast
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34292
diff changeset
  1543
      then have cardlt: "card (t - {b} - s) < card (t - s)" using ft
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1544
        by (auto intro: psubset_card_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1545
      from b ft have ct0: "card t \<noteq> 0" by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1546
    {assume stb: "s \<subseteq> span(t -{b})"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1547
      from ft have ftb: "finite (t -{b})" by auto
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34292
diff changeset
  1548
      from less(1)[OF cardlt ftb s stb]
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  1549
      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
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1550
      let ?w = "insert b u"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1551
      have th0: "s \<subseteq> insert b u" using u by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1552
      from u(3) b have "u \<subseteq> s \<union> t" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1553
      then have th1: "insert b u \<subseteq> s \<union> t" using u b by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1554
      have bu: "b \<notin> u" using b u by blast
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  1555
      from u(1) ft b have "card u = (card t - 1)" by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1556
      then
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  1557
      have th2: "card (insert b u) = card t"
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  1558
        using card_insert_disjoint[OF fu bu] ct0 by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1559
      from u(4) have "s \<subseteq> span u" .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1560
      also have "\<dots> \<subseteq> span (insert b u)" apply (rule span_mono) by blast
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  1561
      finally have th3: "s \<subseteq> span (insert b u)" .
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  1562
      from th0 th1 th2 th3 fu have th: "?P ?w"  by blast
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1563
      from th have ?ths by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1564
    moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1565
    {assume stb: "\<not> s \<subseteq> span(t -{b})"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1566
      from stb obtain a where a: "a \<in> s" "a \<notin> span (t - {b})" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1567
      have ab: "a \<noteq> b" using a b by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1568
      have at: "a \<notin> t" using a ab span_superset[of a "t- {b}"] by auto
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34292
diff changeset
  1569
      have mlt: "card ((insert a (t - {b})) - s) < card (t - s)"
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34292
diff changeset
  1570
        using cardlt ft a b by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1571
      have ft': "finite (insert a (t - {b}))" using ft by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1572
      {fix x assume xs: "x \<in> s"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1573
        have t: "t \<subseteq> (insert b (insert a (t -{b})))" using b by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1574
        from b(1) have "b \<in> span t" by (simp add: span_superset)
35541
himmelma
parents: 35540
diff changeset
  1575
        have bs: "b \<in> span (insert a (t - {b}))" apply(rule in_span_delete)
himmelma
parents: 35540
diff changeset
  1576
          using  a sp unfolding subset_eq by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1577
        from xs sp have "x \<in> span t" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1578
        with span_mono[OF t]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1579
        have x: "x \<in> span (insert b (insert a (t - {b})))" ..
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1580
        from span_trans[OF bs x] have "x \<in> span (insert a (t - {b}))"  .}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1581
      then have sp': "s \<subseteq> span (insert a (t - {b}))" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1582
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34292
diff changeset
  1583
      from less(1)[OF mlt ft' s sp'] obtain u where
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  1584
        u: "card u = card (insert a (t -{b}))" "finite u" "s \<subseteq> u" "u \<subseteq> s \<union> insert a (t -{b})"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1585
        "s \<subseteq> span u" by blast
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  1586
      from u a b ft at ct0 have "?P u" by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1587
      then have ?ths by blast }
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1588
    ultimately have ?ths by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1589
  }
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1590
  ultimately
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1591
  show ?ths  by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1592
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1593
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  1594
text {* This implies corresponding size bounds. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1595
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1596
lemma independent_span_bound:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  1597
  assumes f: "finite t" and i: "independent s" and sp:"s \<subseteq> span t"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1598
  shows "finite s \<and> card s \<le> card t"
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  1599
  by (metis exchange_lemma[OF f i sp] finite_subset card_mono)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1600
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1601
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1602
lemma finite_Atleast_Atmost_nat[simp]: "finite {f x |x. x\<in> (UNIV::'a::finite set)}"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1603
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1604
  have eq: "{f x |x. x\<in> UNIV} = f ` UNIV" by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1605
  show ?thesis unfolding eq
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1606
    apply (rule finite_imageI)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1607
    apply (rule finite)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1608
    done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1609
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  1610
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1611
subsection{* Euclidean Spaces as Typeclass*}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1612
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1613
class real_basis = real_vector +
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1614
  fixes basis :: "nat \<Rightarrow> 'a"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1615
  assumes span_basis: "span (range basis) = UNIV"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1616
  assumes dimension_exists: "\<exists>d>0.
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1617
    basis ` {d..} = {0} \<and>
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1618
    independent (basis ` {..<d}) \<and>
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1619
    inj_on basis {..<d}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1620
37646
dbdbebec57df change type of 'dimension' to 'a itself => nat
huffman
parents: 37645
diff changeset
  1621
definition (in real_basis) dimension :: "'a itself \<Rightarrow> nat" where
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1622
  "dimension x =
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1623
    (THE d. basis ` {d..} = {0} \<and> independent (basis ` {..<d}) \<and> inj_on basis {..<d})"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1624
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1625
syntax "_type_dimension" :: "type => nat" ("(1DIM/(1'(_')))")
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1626
37646
dbdbebec57df change type of 'dimension' to 'a itself => nat
huffman
parents: 37645
diff changeset
  1627
translations "DIM('t)" == "CONST dimension (TYPE('t))"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1628
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1629
lemma (in real_basis) dimensionI:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1630
  assumes "\<And>d. \<lbrakk> 0 < d; basis ` {d..} = {0}; independent (basis ` {..<d});
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1631
    inj_on basis {..<d} \<rbrakk> \<Longrightarrow> P d"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1632
  shows "P DIM('a)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1633
proof -
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1634
  obtain d where "0 < d" and d: "basis ` {d..} = {0} \<and>
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1635
      independent (basis ` {..<d}) \<and> inj_on basis {..<d}" (is "?P d")
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1636
    using dimension_exists by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1637
  show ?thesis unfolding dimension_def
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1638
  proof (rule theI2)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1639
    fix d' assume "?P d'"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1640
    with d have "basis d' = 0" "basis d = 0" and
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1641
      "d < d' \<Longrightarrow> basis d \<noteq> 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1642
      "d' < d \<Longrightarrow> basis d' \<noteq> 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1643
      using dependent_0 by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1644
    thus "d' = d" by (cases rule: linorder_cases) auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1645
    moreover have "P d" using assms[of d] `0 < d` d by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1646
    ultimately show "P d'" by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1647
  next show "?P d" using `?P d` .
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1648
  qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1649
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1650
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1651
lemma (in real_basis) dimension_eq:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1652
  assumes "\<And>i. i < d \<Longrightarrow> basis i \<noteq> 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1653
  assumes "\<And>i. d \<le> i \<Longrightarrow> basis i = 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1654
  shows "DIM('a) = d"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1655
proof (rule dimensionI)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1656
  let ?b = "basis :: nat \<Rightarrow> 'a"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1657
  fix d' assume *: "?b ` {d'..} = {0}" "independent (?b ` {..<d'})"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1658
  show "d' = d"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1659
  proof (cases rule: linorder_cases)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1660
    assume "d' < d" hence "basis d' \<noteq> 0" using assms by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1661
    with * show ?thesis by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1662
  next
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1663
    assume "d < d'" hence "basis d \<noteq> 0" using * dependent_0 by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1664
    with assms(2) `d < d'` show ?thesis by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1665
  qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1666
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1667
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1668
lemma (in real_basis)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1669
  shows basis_finite: "basis ` {DIM('a)..} = {0}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1670
  and independent_basis: "independent (basis ` {..<DIM('a)})"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1671
  and DIM_positive[intro]: "(DIM('a) :: nat) > 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1672
  and basis_inj[simp, intro]: "inj_on basis {..<DIM('a)}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1673
  by (auto intro!: dimensionI)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1674
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1675
lemma (in real_basis) basis_eq_0_iff: "basis j = 0 \<longleftrightarrow> DIM('a) \<le> j"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1676
proof
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1677
  show "DIM('a) \<le> j \<Longrightarrow> basis j = 0" using basis_finite by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1678
next
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1679
  have "j < DIM('a) \<Longrightarrow> basis j \<noteq> 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1680
    using independent_basis by (auto intro!: dependent_0)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1681
  thus "basis j = 0 \<Longrightarrow> DIM('a) \<le> j" unfolding not_le[symmetric] by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1682
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1683
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1684
lemma (in real_basis) range_basis:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1685
    "range basis = insert 0 (basis ` {..<DIM('a)})"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1686
proof -
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1687
  have *: "UNIV = {..<DIM('a)} \<union> {DIM('a)..}" by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1688
  show ?thesis unfolding * image_Un basis_finite by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1689
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1690
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1691
lemma (in real_basis) range_basis_finite[intro]:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1692
    "finite (range basis)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1693
  unfolding range_basis by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1694
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1695
lemma (in real_basis) basis_neq_0[intro]:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1696
  assumes "i<DIM('a)" shows "(basis i) \<noteq> 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1697
proof(rule ccontr) assume "\<not> basis i \<noteq> (0::'a)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1698
  hence "(0::'a) \<in> basis ` {..<DIM('a)}" using assms by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1699
  from dependent_0[OF this] show False using independent_basis by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1700
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1701
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1702
lemma (in real_basis) basis_zero[simp]:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1703
  assumes"i \<ge> DIM('a)" shows "basis i = 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1704
proof-
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1705
  have "(basis i::'a) \<in> basis ` {DIM('a)..}" using assms by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1706
  thus ?thesis unfolding basis_finite by fastsimp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1707
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1708
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1709
lemma basis_representation:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1710
  "\<exists>u. x = (\<Sum>v\<in>basis ` {..<DIM('a)}. u v *\<^sub>R (v\<Colon>'a\<Colon>real_basis))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1711
proof -
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1712
  have "x\<in>UNIV" by auto from this[unfolded span_basis[THEN sym]]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1713
  have "\<exists>u. (\<Sum>v\<in>basis ` {..<DIM('a)}. u v *\<^sub>R v) = x"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1714
    unfolding range_basis span_insert_0 apply(subst (asm) span_finite) by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1715
  thus ?thesis by fastsimp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1716
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1717
37664
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1718
lemma span_basis'[simp]:"span ((basis::nat=>'a) ` {..<DIM('a::real_basis)}) = UNIV"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1719
  apply(subst span_basis[symmetric]) unfolding range_basis by auto
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1720
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1721
lemma card_basis[simp]:"card ((basis::nat=>'a) ` {..<DIM('a::real_basis)}) = DIM('a)"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1722
  apply(subst card_image) using basis_inj by auto
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1723
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1724
lemma in_span_basis: "(x::'a::real_basis) \<in> span (basis ` {..<DIM('a)})"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1725
  unfolding span_basis' ..
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1726
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1727
lemma independent_eq_inj_on:
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1728
  fixes D :: nat and f :: "nat \<Rightarrow> 'c::real_vector" assumes *: "inj_on f {..<D}"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1729
  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)"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1730
proof -
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1731
  from * have eq: "\<And>i. i < D \<Longrightarrow> f ` {..<D} - {f i} = f`({..<D} - {i})"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1732
    and inj: "\<And>i. inj_on f ({..<D} - {i})"
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1733
    by (auto simp: inj_on_def)
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1734
  have *: "\<And>i. finite (f ` {..<D} - {i})" by simp
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1735
  show ?thesis unfolding dependent_def span_finite[OF *]
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1736
    by (auto simp: eq setsum_reindex[OF inj])
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1737
qed
2946b8f057df Instantiate product type as euclidean space.
hoelzl
parents: 37647
diff changeset
  1738
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1739
class real_basis_with_inner = real_inner + real_basis
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1740
begin
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1741
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1742
definition euclidean_component (infixl "$$" 90) where
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1743
  "x $$ i = inner (basis i) x"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1744
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1745
definition Chi (binder "\<chi>\<chi> " 10) where
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1746
  "(\<chi>\<chi> i. f i) = (\<Sum>i<DIM('a). f i *\<^sub>R basis i)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1747
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1748
lemma basis_at_neq_0[intro]:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1749
  "i < DIM('a) \<Longrightarrow> basis i $$ i \<noteq> 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1750
  unfolding euclidean_component_def by (auto intro!: basis_neq_0)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1751
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1752
lemma euclidean_component_ge[simp]:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1753
  assumes "i \<ge> DIM('a)" shows "x $$ i = 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1754
  unfolding euclidean_component_def basis_zero[OF assms] by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1755
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1756
lemma euclidean_scaleR:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1757
  shows "(a *\<^sub>R x) $$ i = a * (x$$i)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1758
  unfolding euclidean_component_def by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1759
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1760
end
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1761
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1762
interpretation euclidean_component: additive "\<lambda>x. euclidean_component x i"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1763
proof qed (simp add: euclidean_component_def inner_right.add)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1764
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1765
subsection{* Euclidean Spaces as Typeclass *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1766
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1767
class euclidean_space = real_basis_with_inner +
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1768
  assumes basis_orthonormal: "\<forall>i<DIM('a). \<forall>j<DIM('a).
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1769
    inner (basis i) (basis j) = (if i = j then 1 else 0)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1770
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1771
lemma (in euclidean_space) dot_basis:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1772
  "inner (basis i) (basis j) = (if i = j \<and> i<DIM('a) then 1 else 0)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1773
proof (cases "(i < DIM('a) \<and> j < DIM('a))")
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1774
  case False
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1775
  hence "basis i = 0 \<or> basis j = 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1776
    using basis_finite by fastsimp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1777
  hence "inner (basis i) (basis j) = 0" by (rule disjE) simp_all
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1778
  thus ?thesis using False by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1779
next
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1780
  case True thus ?thesis using basis_orthonormal by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1781
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1782
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1783
lemma (in euclidean_space) basis_component[simp]:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1784
  "basis i $$ j = (if i = j \<and> i < DIM('a) then 1 else 0)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1785
  unfolding euclidean_component_def dot_basis by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1786
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1787
lemmas euclidean_simps =
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1788
  euclidean_component.add
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1789
  euclidean_component.diff
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1790
  euclidean_scaleR
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1791
  euclidean_component.minus
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1792
  euclidean_component.setsum
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1793
  basis_component
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1794
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1795
lemma euclidean_representation:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1796
  "(x\<Colon>'a\<Colon>euclidean_space) = (\<Sum>i\<in>{..<DIM('a)}. (x$$i) *\<^sub>R basis i)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1797
proof-
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1798
  from basis_representation[of x] guess u ..
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1799
  hence *:"x = (\<Sum>i\<in>{..<DIM('a)}. u (basis i) *\<^sub>R (basis i))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1800
    by (simp add: setsum_reindex)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1801
  show ?thesis apply(subst *)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1802
  proof(safe intro!: setsum_cong2)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1803
    fix i assume i: "i < DIM('a)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1804
    hence "x$$i = (\<Sum>x<DIM('a). (if i = x then u (basis x) else 0))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1805
      by (auto simp: euclidean_simps * intro!: setsum_cong)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1806
    also have "... = u (basis i)" using i by (auto simp: setsum_cases)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1807
    finally show "u (basis i) *\<^sub>R basis i = x $$ i *\<^sub>R basis i" by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1808
  qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1809
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1810
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1811
lemma euclidean_eq:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1812
  fixes x y :: "'a\<Colon>euclidean_space"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1813
  shows "x = y \<longleftrightarrow> (\<forall>i<DIM('a). x$$i = y$$i)" (is "?l = ?r")
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1814
proof safe
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1815
  assume "\<forall>i<DIM('a). x $$ i = y $$ i"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1816
  thus "x = y"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1817
    by (subst (1 2) euclidean_representation) auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1818
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1819
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1820
lemma euclidean_lambda_beta[simp]:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1821
  "((\<chi>\<chi> i. f i)::'a::euclidean_space) $$ j = (if j < DIM('a) then f j else 0)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1822
  by (auto simp: euclidean_simps Chi_def if_distrib setsum_cases
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1823
           intro!: setsum_cong)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1824
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1825
lemma euclidean_lambda_beta':
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1826
  "j < DIM('a) \<Longrightarrow> ((\<chi>\<chi> i. f i)::'a::euclidean_space) $$ j = f j"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1827
  by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1828
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1829
lemma euclidean_lambda_beta'':"(\<forall>j < DIM('a::euclidean_space). P j (((\<chi>\<chi> i. f i)::'a) $$ j)) \<longleftrightarrow>
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1830
  (\<forall>j < DIM('a::euclidean_space). P j (f j))" by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1831
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1832
lemma euclidean_beta_reduce[simp]:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1833
  "(\<chi>\<chi> i. x $$ i) = (x::'a::euclidean_space)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1834
  by (subst euclidean_eq) (simp add: euclidean_lambda_beta)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1835
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1836
lemma euclidean_lambda_beta_0[simp]:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1837
    "((\<chi>\<chi> i. f i)::'a::euclidean_space) $$ 0 = f 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1838
  by (simp add: DIM_positive)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1839
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1840
lemma euclidean_inner:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1841
  "x \<bullet> (y::'a) = (\<Sum>i<DIM('a::euclidean_space). (x $$ i) \<bullet> (y $$ i))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1842
proof -
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1843
  have "x \<bullet> y = (\<Sum>i<DIM('a). x $$ i *\<^sub>R basis i) \<bullet>
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1844
                (\<Sum>i<DIM('a). y $$ i *\<^sub>R (basis i :: 'a))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1845
    by (subst (1 2) euclidean_representation) simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1846
  also have "\<dots> = (\<Sum>i<DIM('a::euclidean_space). (x $$ i) \<bullet> (y $$ i))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1847
    unfolding inner_left.setsum inner_right.setsum
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1848
    by (auto simp add: dot_basis if_distrib setsum_cases intro!: setsum_cong)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1849
  finally show ?thesis .
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1850
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1851
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1852
lemma norm_basis[simp]:"norm (basis i::'a::euclidean_space) = (if i<DIM('a) then 1 else 0)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1853
  unfolding norm_eq_sqrt_inner dot_basis by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1854
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1855
lemma component_le_norm: "\<bar>x$$i\<bar> \<le> norm (x::'a::euclidean_space)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1856
  unfolding euclidean_component_def
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1857
  apply(rule order_trans[OF real_inner_class.Cauchy_Schwarz_ineq2]) by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1858
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1859
lemma norm_bound_component_le: "norm (x::'a::euclidean_space) \<le> e \<Longrightarrow> \<bar>x$$i\<bar> <= e"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1860
  by (metis component_le_norm order_trans)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1861
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1862
lemma norm_bound_component_lt: "norm (x::'a::euclidean_space) < e \<Longrightarrow> \<bar>x$$i\<bar> < e"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1863
  by (metis component_le_norm basic_trans_rules(21))
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1864
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1865
lemma norm_le_l1: "norm (x::'a::euclidean_space) \<le> (\<Sum>i<DIM('a). \<bar>x $$ i\<bar>)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1866
  apply (subst euclidean_representation[of x])
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1867
  apply (rule order_trans[OF setsum_norm])
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1868
  by (auto intro!: setsum_mono)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1869
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1870
lemma setsum_norm_allsubsets_bound:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1871
  fixes f:: "'a \<Rightarrow> 'n::euclidean_space"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1872
  assumes fP: "finite P" and fPs: "\<And>Q. Q \<subseteq> P \<Longrightarrow> norm (setsum f Q) \<le> e"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1873
  shows "setsum (\<lambda>x. norm (f x)) P \<le> 2 * real DIM('n) *  e"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1874
proof-
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1875
  let ?d = "real DIM('n)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1876
  let ?nf = "\<lambda>x. norm (f x)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1877
  let ?U = "{..<DIM('n)}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1878
  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"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1879
    by (rule setsum_commute)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1880
  have th1: "2 * ?d * e = of_nat (card ?U) * (2 * e)" by (simp add: real_of_nat_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1881
  have "setsum ?nf P \<le> setsum (\<lambda>x. setsum (\<lambda>i. \<bar>f x $$ i\<bar>) ?U) P"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1882
    apply (rule setsum_mono)    by (rule norm_le_l1)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1883
  also have "\<dots> \<le> 2 * ?d * e"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1884
    unfolding th0 th1
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1885
  proof(rule setsum_bounded)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1886
    fix i assume i: "i \<in> ?U"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1887
    let ?Pp = "{x. x\<in> P \<and> f x $$ i \<ge> 0}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1888
    let ?Pn = "{x. x \<in> P \<and> f x $$ i < 0}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1889
    have thp: "P = ?Pp \<union> ?Pn" by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1890
    have thp0: "?Pp \<inter> ?Pn ={}" by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1891
    have PpP: "?Pp \<subseteq> P" and PnP: "?Pn \<subseteq> P" by blast+
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1892
    have Ppe:"setsum (\<lambda>x. \<bar>f x $$ i\<bar>) ?Pp \<le> e"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1893
      using component_le_norm[of "setsum (\<lambda>x. f x) ?Pp" i]  fPs[OF PpP]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1894
      unfolding euclidean_component.setsum by(auto intro: abs_le_D1)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1895
    have Pne: "setsum (\<lambda>x. \<bar>f x $$ i\<bar>) ?Pn \<le> e"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1896
      using component_le_norm[of "setsum (\<lambda>x. - f x) ?Pn" i]  fPs[OF PnP]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1897
      unfolding euclidean_component.setsum euclidean_component.minus
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1898
      by(auto simp add: setsum_negf intro: abs_le_D1)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1899
    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"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1900
      apply (subst thp)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1901
      apply (rule setsum_Un_zero)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1902
      using fP thp0 by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1903
    also have "\<dots> \<le> 2*e" using Pne Ppe by arith
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1904
    finally show "setsum (\<lambda>x. \<bar>f x $$ i\<bar>) P \<le> 2*e" .
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1905
  qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1906
  finally show ?thesis .
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1907
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1908
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1909
lemma choice_iff': "(\<forall>x<d. \<exists>y. P x y) \<longleftrightarrow> (\<exists>f. \<forall>x<d. P x (f x))" by metis
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1910
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1911
lemma lambda_skolem': "(\<forall>i<DIM('a::euclidean_space). \<exists>x. P i x) \<longleftrightarrow>
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1912
   (\<exists>x::'a. \<forall>i<DIM('a). P i (x$$i))" (is "?lhs \<longleftrightarrow> ?rhs")
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1913
proof-
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1914
  let ?S = "{..<DIM('a)}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1915
  {assume H: "?rhs"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1916
    then have ?lhs by auto}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1917
  moreover
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1918
  {assume H: "?lhs"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1919
    then obtain f where f:"\<forall>i<DIM('a). P i (f i)" unfolding choice_iff' by metis
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1920
    let ?x = "(\<chi>\<chi> i. (f i)) :: 'a"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1921
    {fix i assume i:"i<DIM('a)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1922
      with f have "P i (f i)" by metis
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1923
      then have "P i (?x$$i)" using i by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1924
    }
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1925
    hence "\<forall>i<DIM('a). P i (?x$$i)" by metis
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1926
    hence ?rhs by metis }
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1927
  ultimately show ?thesis by metis
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1928
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1929
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1930
subsection {* An ordering on euclidean spaces that will allow us to talk about intervals *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1931
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1932
class ordered_euclidean_space = ord + euclidean_space +
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1933
  assumes eucl_le: "x \<le> y \<longleftrightarrow> (\<forall>i < DIM('a). x $$ i \<le> y $$ i)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1934
  and eucl_less: "x < y \<longleftrightarrow> (\<forall>i < DIM('a). x $$ i < y $$ i)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1935
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1936
subsection {* Linearity and Bilinearity continued *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1937
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1938
lemma linear_bounded:
37645
5cbd5d5959f2 generalize some euclidean_space lemmas
huffman
parents: 37606
diff changeset
  1939
  fixes f:: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1940
  assumes lf: "linear f"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1941
  shows "\<exists>B. \<forall>x. norm (f x) \<le> B * norm x"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1942
proof-
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1943
  let ?S = "{..<DIM('a)}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1944
  let ?B = "setsum (\<lambda>i. norm(f(basis i))) ?S"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1945
  have fS: "finite ?S" by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1946
  {fix x:: "'a"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1947
    let ?g = "(\<lambda> i. (x$$i) *\<^sub>R (basis i) :: 'a)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1948
    have "norm (f x) = norm (f (setsum (\<lambda>i. (x$$i) *\<^sub>R (basis i)) ?S))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1949
      apply(subst euclidean_representation[of x]) ..
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1950
    also have "\<dots> = norm (setsum (\<lambda> i. (x$$i) *\<^sub>R f (basis i)) ?S)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1951
      using linear_setsum[OF lf fS, of ?g, unfolded o_def] linear_cmul[OF lf] by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1952
    finally have th0: "norm (f x) = norm (setsum (\<lambda>i. (x$$i) *\<^sub>R f (basis i))?S)" .
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1953
    {fix i assume i: "i \<in> ?S"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1954
      from component_le_norm[of x i]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1955
      have "norm ((x$$i) *\<^sub>R f (basis i :: 'a)) \<le> norm (f (basis i)) * norm x"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1956
      unfolding norm_scaleR
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1957
      apply (simp only: mult_commute)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1958
      apply (rule mult_mono)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1959
      by (auto simp add: field_simps) }
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1960
    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
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1961
    from setsum_norm_le[OF fS, of "\<lambda>i. (x$$i) *\<^sub>R (f (basis i))", OF th]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1962
    have "norm (f x) \<le> ?B * norm x" unfolding th0 setsum_left_distrib by metis}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1963
  then show ?thesis by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1964
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1965
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1966
lemma linear_bounded_pos:
37645
5cbd5d5959f2 generalize some euclidean_space lemmas
huffman
parents: 37606
diff changeset
  1967
  fixes f:: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1968
  assumes lf: "linear f"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1969
  shows "\<exists>B > 0. \<forall>x. norm (f x) \<le> B * norm x"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1970
proof-
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1971
  from linear_bounded[OF lf] obtain B where
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1972
    B: "\<forall>x. norm (f x) \<le> B * norm x" by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1973
  let ?K = "\<bar>B\<bar> + 1"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1974
  have Kp: "?K > 0" by arith
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1975
    { assume C: "B < 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1976
      have "((\<chi>\<chi> i. 1)::'a) \<noteq> 0" unfolding euclidean_eq[where 'a='a]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1977
        by(auto intro!:exI[where x=0] simp add:euclidean_component.zero)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1978
      hence "norm ((\<chi>\<chi> i. 1)::'a) > 0" by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1979
      with C have "B * norm ((\<chi>\<chi> i. 1)::'a) < 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1980
        by (simp add: mult_less_0_iff)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1981
      with B[rule_format, of "(\<chi>\<chi> i. 1)::'a"] norm_ge_zero[of "f ((\<chi>\<chi> i. 1)::'a)"] have False by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1982
    }
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1983
    then have Bp: "B \<ge> 0" by ferrack
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1984
    {fix x::"'a"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1985
      have "norm (f x) \<le> ?K *  norm x"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1986
      using B[rule_format, of x] norm_ge_zero[of x] norm_ge_zero[of "f x"] Bp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1987
      apply (auto simp add: field_simps split add: abs_split)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1988
      apply (erule order_trans, simp)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1989
      done
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1990
  }
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1991
  then show ?thesis using Kp by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1992
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1993
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1994
lemma linear_conv_bounded_linear:
37645
5cbd5d5959f2 generalize some euclidean_space lemmas
huffman
parents: 37606
diff changeset
  1995
  fixes f :: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1996
  shows "linear f \<longleftrightarrow> bounded_linear f"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1997
proof
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1998
  assume "linear f"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  1999
  show "bounded_linear f"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2000
  proof
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2001
    fix x y show "f (x + y) = f x + f y"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2002
      using `linear f` unfolding linear_def by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2003
  next
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2004
    fix r x show "f (scaleR r x) = scaleR r (f x)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2005
      using `linear f` unfolding linear_def by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2006
  next
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2007
    have "\<exists>B. \<forall>x. norm (f x) \<le> B * norm x"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2008
      using `linear f` by (rule linear_bounded)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2009
    thus "\<exists>K. \<forall>x. norm (f x) \<le> norm x * K"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2010
      by (simp add: mult_commute)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2011
  qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2012
next
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2013
  assume "bounded_linear f"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2014
  then interpret f: bounded_linear f .
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2015
  show "linear f"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2016
    by (simp add: f.add f.scaleR linear_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2017
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2018
37645
5cbd5d5959f2 generalize some euclidean_space lemmas
huffman
parents: 37606
diff changeset
  2019
lemma bounded_linearI': fixes f::"'a::euclidean_space \<Rightarrow> 'b::real_normed_vector"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2020
  assumes "\<And>x y. f (x + y) = f x + f y" "\<And>c x. f (c *\<^sub>R x) = c *\<^sub>R f x"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2021
  shows "bounded_linear f" unfolding linear_conv_bounded_linear[THEN sym]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2022
  by(rule linearI[OF assms])
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2023
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2024
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2025
lemma bilinear_bounded:
37645
5cbd5d5959f2 generalize some euclidean_space lemmas
huffman
parents: 37606
diff changeset
  2026
  fixes h:: "'m::euclidean_space \<Rightarrow> 'n::euclidean_space \<Rightarrow> 'k::real_normed_vector"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2027
  assumes bh: "bilinear h"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2028
  shows "\<exists>B. \<forall>x y. norm (h x y) \<le> B * norm x * norm y"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2029
proof-
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2030
  let ?M = "{..<DIM('m)}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2031
  let ?N = "{..<DIM('n)}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2032
  let ?B = "setsum (\<lambda>(i,j). norm (h (basis i) (basis j))) (?M \<times> ?N)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2033
  have fM: "finite ?M" and fN: "finite ?N" by simp_all
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2034
  {fix x:: "'m" and  y :: "'n"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2035
    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))" 
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2036
      apply(subst euclidean_representation[where 'a='m])
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2037
      apply(subst euclidean_representation[where 'a='n]) ..
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2038
    also have "\<dots> = norm (setsum (\<lambda> (i,j). h ((x$$i) *\<^sub>R basis i) ((y$$j) *\<^sub>R basis j)) (?M \<times> ?N))"  
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2039
      unfolding bilinear_setsum[OF bh fM fN] ..
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2040
    finally have th: "norm (h x y) = \<dots>" .
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2041
    have "norm (h x y) \<le> ?B * norm x * norm y"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2042
      apply (simp add: setsum_left_distrib th)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2043
      apply (rule setsum_norm_le)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2044
      using fN fM
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2045
      apply simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2046
      apply (auto simp add: bilinear_rmul[OF bh] bilinear_lmul[OF bh] field_simps simp del: scaleR_scaleR)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2047
      apply (rule mult_mono)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2048
      apply (auto simp add: zero_le_mult_iff component_le_norm)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2049
      apply (rule mult_mono)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2050
      apply (auto simp add: zero_le_mult_iff component_le_norm)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2051
      done}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2052
  then show ?thesis by metis
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2053
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2054
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2055
lemma bilinear_bounded_pos:
37645
5cbd5d5959f2 generalize some euclidean_space lemmas
huffman
parents: 37606
diff changeset
  2056
  fixes h:: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space \<Rightarrow> 'c::real_normed_vector"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2057
  assumes bh: "bilinear h"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2058
  shows "\<exists>B > 0. \<forall>x y. norm (h x y) \<le> B * norm x * norm y"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2059
proof-
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2060
  from bilinear_bounded[OF bh] obtain B where
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2061
    B: "\<forall>x y. norm (h x y) \<le> B * norm x * norm y" by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2062
  let ?K = "\<bar>B\<bar> + 1"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2063
  have Kp: "?K > 0" by arith
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2064
  have KB: "B < ?K" by arith
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2065
  {fix x::'a and y::'b
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2066
    from KB Kp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2067
    have "B * norm x * norm y \<le> ?K * norm x * norm y"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2068
      apply -
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2069
      apply (rule mult_right_mono, rule mult_right_mono)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2070
      by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2071
    then have "norm (h x y) \<le> ?K * norm x * norm y"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2072
      using B[rule_format, of x y] by simp}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2073
  with Kp show ?thesis by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2074
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2075
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2076
lemma bilinear_conv_bounded_bilinear:
37645
5cbd5d5959f2 generalize some euclidean_space lemmas
huffman
parents: 37606
diff changeset
  2077
  fixes h :: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space \<Rightarrow> 'c::real_normed_vector"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2078
  shows "bilinear h \<longleftrightarrow> bounded_bilinear h"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2079
proof
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2080
  assume "bilinear h"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2081
  show "bounded_bilinear h"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2082
  proof
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2083
    fix x y z show "h (x + y) z = h x z + h y z"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2084
      using `bilinear h` unfolding bilinear_def linear_def by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2085
  next
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2086
    fix x y z show "h x (y + z) = h x y + h x z"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2087
      using `bilinear h` unfolding bilinear_def linear_def by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2088
  next
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2089
    fix r x y show "h (scaleR r x) y = scaleR r (h x y)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2090
      using `bilinear h` unfolding bilinear_def linear_def
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2091
      by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2092
  next
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2093
    fix r x y show "h x (scaleR r y) = scaleR r (h x y)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2094
      using `bilinear h` unfolding bilinear_def linear_def
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2095
      by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2096
  next
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2097
    have "\<exists>B. \<forall>x y. norm (h x y) \<le> B * norm x * norm y"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2098
      using `bilinear h` by (rule bilinear_bounded)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2099
    thus "\<exists>K. \<forall>x y. norm (h x y) \<le> norm x * norm y * K"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2100
      by (simp add: mult_ac)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2101
  qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2102
next
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2103
  assume "bounded_bilinear h"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2104
  then interpret h: bounded_bilinear h .
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2105
  show "bilinear h"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2106
    unfolding bilinear_def linear_conv_bounded_linear
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2107
    using h.bounded_linear_left h.bounded_linear_right
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2108
    by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2109
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2110
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2111
subsection {* We continue. *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2112
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2113
lemma independent_bound:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2114
  fixes S:: "('a::euclidean_space) set"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2115
  shows "independent S \<Longrightarrow> finite S \<and> card S <= DIM('a::euclidean_space)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2116
  using independent_span_bound[of "(basis::nat=>'a) ` {..<DIM('a)}" S] by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2117
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2118
lemma dependent_biggerset: "(finite (S::('a::euclidean_space) set) ==> card S > DIM('a)) ==> dependent S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2119
  by (metis independent_bound not_less)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2120
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2121
text {* Hence we can create a maximal independent subset. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2122
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2123
lemma maximal_independent_subset_extend:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2124
  assumes sv: "(S::('a::euclidean_space) set) \<subseteq> V" and iS: "independent S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2125
  shows "\<exists>B. S \<subseteq> B \<and> B \<subseteq> V \<and> independent B \<and> V \<subseteq> span B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2126
  using sv iS
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2127
proof(induct "DIM('a) - card S" arbitrary: S rule: less_induct)
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34292
diff changeset
  2128
  case less
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34292
diff changeset
  2129
  note sv = `S \<subseteq> V` and i = `independent S`
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2130
  let ?P = "\<lambda>B. S \<subseteq> B \<and> B \<subseteq> V \<and> independent B \<and> V \<subseteq> span B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2131
  let ?ths = "\<exists>x. ?P x"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2132
  let ?d = "DIM('a)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2133
  {assume "V \<subseteq> span S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2134
    then have ?ths  using sv i by blast }
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2135
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2136
  {assume VS: "\<not> V \<subseteq> span S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2137
    from VS obtain a where a: "a \<in> V" "a \<notin> span S" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2138
    from a have aS: "a \<notin> S" by (auto simp add: span_superset)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2139
    have th0: "insert a S \<subseteq> V" using a sv by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2140
    from independent_insert[of a S]  i a
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2141
    have th1: "independent (insert a S)" by auto
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34292
diff changeset
  2142
    have mlt: "?d - card (insert a S) < ?d - card S"
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34292
diff changeset
  2143
      using aS a independent_bound[OF th1]
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2144
      by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2145
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34292
diff changeset
  2146
    from less(1)[OF mlt th0 th1]
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2147
    obtain B where B: "insert a S \<subseteq> B" "B \<subseteq> V" "independent B" " V \<subseteq> span B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2148
      by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2149
    from B have "?P B" by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2150
    then have ?ths by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2151
  ultimately show ?ths by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2152
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2153
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2154
lemma maximal_independent_subset:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2155
  "\<exists>(B:: ('a::euclidean_space) set). B\<subseteq> V \<and> independent B \<and> V \<subseteq> span B"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2156
  by (metis maximal_independent_subset_extend[of "{}:: ('a::euclidean_space) set"] empty_subsetI independent_empty)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2157
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2158
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2159
text {* Notion of dimension. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2160
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2161
definition "dim V = (SOME n. \<exists>B. B \<subseteq> V \<and> independent B \<and> V \<subseteq> span B \<and> (card B = n))"
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2162
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2163
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)"
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2164
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)"]
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2165
using maximal_independent_subset[of V] independent_bound
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2166
by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2167
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2168
text {* Consequences of independence or spanning for cardinality. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2169
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2170
lemma independent_card_le_dim: 
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2171
  assumes "(B::('a::euclidean_space) set) \<subseteq> V" and "independent B" shows "card B \<le> dim V"
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2172
proof -
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2173
  from basis_exists[of V] `B \<subseteq> V`
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2174
  obtain B' where "independent B'" and "B \<subseteq> span B'" and "card B' = dim V" by blast
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2175
  with independent_span_bound[OF _ `independent B` `B \<subseteq> span B'`] independent_bound[of B']
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2176
  show ?thesis by auto
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2177
qed
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2178
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2179
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"
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2180
  by (metis basis_exists[of V] independent_span_bound subset_trans)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2181
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2182
lemma basis_card_eq_dim:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2183
  "B \<subseteq> (V:: ('a::euclidean_space) set) \<Longrightarrow> V \<subseteq> span B \<Longrightarrow> independent B \<Longrightarrow> finite B \<and> card B = dim V"
36362
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
  2184
  by (metis order_eq_iff independent_card_le_dim span_card_ge_dim independent_bound)
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2185
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2186
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"
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2187
  by (metis basis_card_eq_dim)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2188
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2189
text {* More lemmas about dimension. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2190
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2191
lemma dim_UNIV: "dim (UNIV :: ('a::euclidean_space) set) = DIM('a)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2192
  apply (rule dim_unique[of "(basis::nat=>'a) ` {..<DIM('a)}"])
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2193
  using independent_basis by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2194
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2195
lemma dim_subset:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2196
  "(S:: ('a::euclidean_space) set) \<subseteq> T \<Longrightarrow> dim S \<le> dim T"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2197
  using basis_exists[of T] basis_exists[of S]
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2198
  by (metis independent_card_le_dim subset_trans)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2199
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2200
lemma dim_subset_UNIV: "dim (S:: ('a::euclidean_space) set) \<le> DIM('a)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2201
  by (metis dim_subset subset_UNIV dim_UNIV)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2202
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2203
text {* Converses to those. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2204
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2205
lemma card_ge_dim_independent:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2206
  assumes BV:"(B::('a::euclidean_space) set) \<subseteq> V" and iB:"independent B" and dVB:"dim V \<le> card B"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2207
  shows "V \<subseteq> span B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2208
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2209
  {fix a assume aV: "a \<in> V"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2210
    {assume aB: "a \<notin> span B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2211
      then have iaB: "independent (insert a B)" using iB aV  BV by (simp add: independent_insert)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2212
      from aV BV have th0: "insert a B \<subseteq> V" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2213
      from aB have "a \<notin>B" by (auto simp add: span_superset)
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2214
      with independent_card_le_dim[OF th0 iaB] dVB independent_bound[OF iB] have False by auto }
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2215
    then have "a \<in> span B"  by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2216
  then show ?thesis by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2217
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2218
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2219
lemma card_le_dim_spanning:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2220
  assumes BV: "(B:: ('a::euclidean_space) set) \<subseteq> V" and VB: "V \<subseteq> span B"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2221
  and fB: "finite B" and dVB: "dim V \<ge> card B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2222
  shows "independent B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2223
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2224
  {fix a assume a: "a \<in> B" "a \<in> span (B -{a})"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2225
    from a fB have c0: "card B \<noteq> 0" by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2226
    from a fB have cb: "card (B -{a}) = card B - 1" by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2227
    from BV a have th0: "B -{a} \<subseteq> V" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2228
    {fix x assume x: "x \<in> V"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2229
      from a have eq: "insert a (B -{a}) = B" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2230
      from x VB have x': "x \<in> span B" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2231
      from span_trans[OF a(2), unfolded eq, OF x']
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2232
      have "x \<in> span (B -{a})" . }
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2233
    then have th1: "V \<subseteq> span (B -{a})" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2234
    have th2: "finite (B -{a})" using fB by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2235
    from span_card_ge_dim[OF th0 th1 th2]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2236
    have c: "dim V \<le> card (B -{a})" .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2237
    from c c0 dVB cb have False by simp}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2238
  then show ?thesis unfolding dependent_def by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2239
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2240
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2241
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"
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2242
  by (metis order_eq_iff card_le_dim_spanning
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2243
    card_ge_dim_independent)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2244
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2245
text {* More general size bound lemmas. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2246
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2247
lemma independent_bound_general:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2248
  "independent (S:: ('a::euclidean_space) set) \<Longrightarrow> finite S \<and> card S \<le> dim S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2249
  by (metis independent_card_le_dim independent_bound subset_refl)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2250
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2251
lemma dependent_biggerset_general: "(finite (S:: ('a::euclidean_space) set) \<Longrightarrow> card S > dim S) \<Longrightarrow> dependent S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2252
  using independent_bound_general[of S] by (metis linorder_not_le)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2253
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2254
lemma dim_span: "dim (span (S:: ('a::euclidean_space) set)) = dim S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2255
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2256
  have th0: "dim S \<le> dim (span S)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2257
    by (auto simp add: subset_eq intro: dim_subset span_superset)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2258
  from basis_exists[of S]
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2259
  obtain B where B: "B \<subseteq> S" "independent B" "S \<subseteq> span B" "card B = dim S" by blast
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2260
  from B have fB: "finite B" "card B = dim S" using independent_bound by blast+
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2261
  have bSS: "B \<subseteq> span S" using B(1) by (metis subset_eq span_inc)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2262
  have sssB: "span S \<subseteq> span B" using span_mono[OF B(3)] by (simp add: span_span)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2263
  from span_card_ge_dim[OF bSS sssB fB(1)] th0 show ?thesis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2264
    using fB(2)  by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2265
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2266
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2267
lemma subset_le_dim: "(S:: ('a::euclidean_space) set) \<subseteq> span T \<Longrightarrow> dim S \<le> dim T"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2268
  by (metis dim_span dim_subset)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2269
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2270
lemma span_eq_dim: "span (S:: ('a::euclidean_space) set) = span T ==> dim S = dim T"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2271
  by (metis dim_span)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2272
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2273
lemma spans_image:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2274
  assumes lf: "linear f" and VB: "V \<subseteq> span B"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2275
  shows "f ` V \<subseteq> span (f ` B)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2276
  unfolding span_linear_image[OF lf]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2277
  by (metis VB image_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2278
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2279
lemma dim_image_le:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2280
  fixes f :: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2281
  assumes lf: "linear f" shows "dim (f ` S) \<le> dim (S)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2282
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2283
  from basis_exists[of S] obtain B where
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2284
    B: "B \<subseteq> S" "independent B" "S \<subseteq> span B" "card B = dim S" by blast
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2285
  from B have fB: "finite B" "card B = dim S" using independent_bound by blast+
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2286
  have "dim (f ` S) \<le> card (f ` B)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2287
    apply (rule span_card_ge_dim)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2288
    using lf B fB by (auto simp add: span_linear_image spans_image subset_image_iff)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2289
  also have "\<dots> \<le> dim S" using card_image_le[OF fB(1)] fB by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2290
  finally show ?thesis .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2291
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2292
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2293
text {* Relation between bases and injectivity/surjectivity of map. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2294
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2295
lemma spanning_surjective_image:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2296
  assumes us: "UNIV \<subseteq> span S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2297
  and lf: "linear f" and sf: "surj f"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2298
  shows "UNIV \<subseteq> span (f ` S)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2299
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2300
  have "UNIV \<subseteq> f ` UNIV" using sf by (auto simp add: surj_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2301
  also have " \<dots> \<subseteq> span (f ` S)" using spans_image[OF lf us] .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2302
finally show ?thesis .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2303
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2304
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2305
lemma independent_injective_image:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2306
  assumes iS: "independent S" and lf: "linear f" and fi: "inj f"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2307
  shows "independent (f ` S)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2308
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2309
  {fix a assume a: "a \<in> S" "f a \<in> span (f ` S - {f a})"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2310
    have eq: "f ` S - {f a} = f ` (S - {a})" using fi
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2311
      by (auto simp add: inj_on_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2312
    from a have "f a \<in> f ` span (S -{a})"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2313
      unfolding eq span_linear_image[OF lf, of "S - {a}"]  by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2314
    hence "a \<in> span (S -{a})" using fi by (auto simp add: inj_on_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2315
    with a(1) iS  have False by (simp add: dependent_def) }
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2316
  then show ?thesis unfolding dependent_def by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2317
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2318
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2319
text {* Picking an orthogonal replacement for a spanning set. *}
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2320
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2321
    (* FIXME : Move to some general theory ?*)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2322
definition "pairwise R S \<longleftrightarrow> (\<forall>x \<in> S. \<forall>y\<in> S. x\<noteq>y \<longrightarrow> R x y)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2323
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2324
lemma vector_sub_project_orthogonal: "(b::'a::euclidean_space) \<bullet> (x - ((b \<bullet> x) / (b \<bullet> b)) *\<^sub>R b) = 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2325
  unfolding inner_simps by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2326
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2327
lemma basis_orthogonal:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2328
  fixes B :: "('a::euclidean_space) set"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2329
  assumes fB: "finite B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2330
  shows "\<exists>C. finite C \<and> card C \<le> card B \<and> span C = span B \<and> pairwise orthogonal C"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2331
  (is " \<exists>C. ?P B C")
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2332
proof(induct rule: finite_induct[OF fB])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2333
  case 1 thus ?case apply (rule exI[where x="{}"]) by (auto simp add: pairwise_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2334
next
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2335
  case (2 a B)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2336
  note fB = `finite B` and aB = `a \<notin> B`
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2337
  from `\<exists>C. finite C \<and> card C \<le> card B \<and> span C = span B \<and> pairwise orthogonal C`
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2338
  obtain C where C: "finite C" "card C \<le> card B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2339
    "span C = span B" "pairwise orthogonal C" by blast
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2340
  let ?a = "a - setsum (\<lambda>x. (x \<bullet> a / (x \<bullet> x)) *\<^sub>R x) C"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2341
  let ?C = "insert ?a C"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2342
  from C(1) have fC: "finite ?C" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2343
  from fB aB C(1,2) have cC: "card ?C \<le> card (insert a B)" by (simp add: card_insert_if)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2344
  {fix x k
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2345
    have th0: "\<And>(a::'a) b c. a - (b - c) = c + (a - b)" by (simp add: field_simps)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2346
    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"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2347
      apply (simp only: scaleR_right_diff_distrib th0)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2348
      apply (rule span_add_eq)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2349
      apply (rule span_mul)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2350
      apply (rule span_setsum[OF C(1)])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2351
      apply clarify
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2352
      apply (rule span_mul)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2353
      by (rule span_superset)}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2354
  then have SC: "span ?C = span (insert a B)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2355
    unfolding expand_set_eq span_breakdown_eq C(3)[symmetric] by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2356
  thm pairwise_def
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2357
  {fix x y assume xC: "x \<in> ?C" and yC: "y \<in> ?C" and xy: "x \<noteq> y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2358
    {assume xa: "x = ?a" and ya: "y = ?a"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2359
      have "orthogonal x y" using xa ya xy by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2360
    moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2361
    {assume xa: "x = ?a" and ya: "y \<noteq> ?a" "y \<in> C"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2362
      from ya have Cy: "C = insert y (C - {y})" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2363
      have fth: "finite (C - {y})" using C by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2364
      have "orthogonal x y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2365
        using xa ya
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
  2366
        unfolding orthogonal_def xa inner_simps diff_eq_0_iff_eq
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2367
        apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2368
        apply (subst Cy)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2369
        using C(1) fth
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2370
        apply (simp only: setsum_clauses)
36362
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
  2371
        apply (auto simp add: inner_simps inner_commute[of y a] dot_lsum[OF fth])
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2372
        apply (rule setsum_0')
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2373
        apply clarsimp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2374
        apply (rule C(4)[unfolded pairwise_def orthogonal_def, rule_format])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2375
        by auto}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2376
    moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2377
    {assume xa: "x \<noteq> ?a" "x \<in> C" and ya: "y = ?a"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2378
      from xa have Cx: "C = insert x (C - {x})" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2379
      have fth: "finite (C - {x})" using C by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2380
      have "orthogonal x y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2381
        using xa ya
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
  2382
        unfolding orthogonal_def ya inner_simps diff_eq_0_iff_eq
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2383
        apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2384
        apply (subst Cx)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2385
        using C(1) fth
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2386
        apply (simp only: setsum_clauses)
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
  2387
        apply (subst inner_commute[of x])
36362
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
  2388
        apply (auto simp add: inner_simps inner_commute[of x a] dot_rsum[OF fth])
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2389
        apply (rule setsum_0')
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2390
        apply clarsimp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2391
        apply (rule C(4)[unfolded pairwise_def orthogonal_def, rule_format])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2392
        by auto}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2393
    moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2394
    {assume xa: "x \<in> C" and ya: "y \<in> C"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2395
      have "orthogonal x y" using xa ya xy C(4) unfolding pairwise_def by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2396
    ultimately have "orthogonal x y" using xC yC by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2397
  then have CPO: "pairwise orthogonal ?C" unfolding pairwise_def by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2398
  from fC cC SC CPO have "?P (insert a B) ?C" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2399
  then show ?case by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2400
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2401
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2402
lemma orthogonal_basis_exists:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2403
  fixes V :: "('a::euclidean_space) set"
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2404
  shows "\<exists>B. independent B \<and> B \<subseteq> span V \<and> V \<subseteq> span B \<and> (card B = dim V) \<and> pairwise orthogonal B"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2405
proof-
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2406
  from basis_exists[of V] obtain B where B: "B \<subseteq> V" "independent B" "V \<subseteq> span B" "card B = dim V" by blast
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2407
  from B have fB: "finite B" "card B = dim V" using independent_bound by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2408
  from basis_orthogonal[OF fB(1)] obtain C where
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2409
    C: "finite C" "card C \<le> card B" "span C = span B" "pairwise orthogonal C" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2410
  from C B
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2411
  have CSV: "C \<subseteq> span V" by (metis span_inc span_mono subset_trans)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2412
  from span_mono[OF B(3)]  C have SVC: "span V \<subseteq> span C" by (simp add: span_span)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2413
  from card_le_dim_spanning[OF CSV SVC C(1)] C(2,3) fB
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2414
  have iC: "independent C" by (simp add: dim_span)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2415
  from C fB have "card C \<le> dim V" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2416
  moreover have "dim V \<le> card C" using span_card_ge_dim[OF CSV SVC C(1)]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2417
    by (simp add: dim_span)
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2418
  ultimately have CdV: "card C = dim V" using C(1) by simp
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2419
  from C B CSV CdV iC show ?thesis by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2420
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2421
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2422
lemma span_eq: "span S = span T \<longleftrightarrow> S \<subseteq> span T \<and> T \<subseteq> span S"
35541
himmelma
parents: 35540
diff changeset
  2423
  using span_inc[unfolded subset_eq] using span_mono[of T "span S"] span_mono[of S "span T"]
himmelma
parents: 35540
diff changeset
  2424
  by(auto simp add: span_span)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2425
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2426
text {* Low-dimensional subset is in a hyperplane (weak orthogonal complement). *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2427
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2428
lemma span_not_univ_orthogonal: fixes S::"('a::euclidean_space) set"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2429
  assumes sU: "span S \<noteq> UNIV"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2430
  shows "\<exists>(a::'a). a \<noteq>0 \<and> (\<forall>x \<in> span S. a \<bullet> x = 0)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2431
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2432
  from sU obtain a where a: "a \<notin> span S" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2433
  from orthogonal_basis_exists obtain B where
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2434
    B: "independent B" "B \<subseteq> span S" "S \<subseteq> span B" "card B = dim S" "pairwise orthogonal B"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2435
    by blast
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2436
  from B have fB: "finite B" "card B = dim S" using independent_bound by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2437
  from span_mono[OF B(2)] span_mono[OF B(3)]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2438
  have sSB: "span S = span B" by (simp add: span_span)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2439
  let ?a = "a - setsum (\<lambda>b. (a \<bullet> b / (b \<bullet> b)) *\<^sub>R b) B"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2440
  have "setsum (\<lambda>b. (a \<bullet> b / (b \<bullet> b)) *\<^sub>R b) B \<in> span S"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2441
    unfolding sSB
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2442
    apply (rule span_setsum[OF fB(1)])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2443
    apply clarsimp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2444
    apply (rule span_mul)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2445
    by (rule span_superset)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2446
  with a have a0:"?a  \<noteq> 0" by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2447
  have "\<forall>x\<in>span B. ?a \<bullet> x = 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2448
  proof(rule span_induct')
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2449
    show "subspace (\<lambda>x. ?a \<bullet> x = 0)" by (auto simp add: subspace_def mem_def inner_simps)
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
  2450
next
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2451
    {fix x assume x: "x \<in> B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2452
      from x have B': "B = insert x (B - {x})" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2453
      have fth: "finite (B - {x})" using fB by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2454
      have "?a \<bullet> x = 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2455
        apply (subst B') using fB fth
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2456
        unfolding setsum_clauses(2)[OF fth]
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2457
        apply simp unfolding inner_simps
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2458
        apply (clarsimp simp add: inner_simps dot_lsum)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2459
        apply (rule setsum_0', rule ballI)
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
  2460
        unfolding inner_commute
36362
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
  2461
        by (auto simp add: x field_simps intro: B(5)[unfolded pairwise_def orthogonal_def, rule_format])}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2462
    then show "\<forall>x \<in> B. ?a \<bullet> x = 0" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2463
  qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2464
  with a0 show ?thesis unfolding sSB by (auto intro: exI[where x="?a"])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2465
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2466
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2467
lemma span_not_univ_subset_hyperplane:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2468
  assumes SU: "span S \<noteq> (UNIV ::('a::euclidean_space) set)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2469
  shows "\<exists> a. a \<noteq>0 \<and> span S \<subseteq> {x. a \<bullet> x = 0}"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2470
  using span_not_univ_orthogonal[OF SU] by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2471
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2472
lemma lowdim_subset_hyperplane: fixes S::"('a::euclidean_space) set"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2473
  assumes d: "dim S < DIM('a)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2474
  shows "\<exists>(a::'a). a  \<noteq> 0 \<and> span S \<subseteq> {x. a \<bullet> x = 0}"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2475
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2476
  {assume "span S = UNIV"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2477
    hence "dim (span S) = dim (UNIV :: ('a) set)" by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2478
    hence "dim S = DIM('a)" by (simp add: dim_span dim_UNIV)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2479
    with d have False by arith}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2480
  hence th: "span S \<noteq> UNIV" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2481
  from span_not_univ_subset_hyperplane[OF th] show ?thesis .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2482
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2483
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2484
text {* We can extend a linear basis-basis injection to the whole set. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2485
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2486
lemma linear_indep_image_lemma:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2487
  assumes lf: "linear f" and fB: "finite B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2488
  and ifB: "independent (f ` B)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2489
  and fi: "inj_on f B" and xsB: "x \<in> span B"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2490
  and fx: "f x = 0"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2491
  shows "x = 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2492
  using fB ifB fi xsB fx
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2493
proof(induct arbitrary: x rule: finite_induct[OF fB])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2494
  case 1 thus ?case by (auto simp add:  span_empty)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2495
next
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2496
  case (2 a b x)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2497
  have fb: "finite b" using "2.prems" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2498
  have th0: "f ` b \<subseteq> f ` (insert a b)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2499
    apply (rule image_mono) by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2500
  from independent_mono[ OF "2.prems"(2) th0]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2501
  have ifb: "independent (f ` b)"  .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2502
  have fib: "inj_on f b"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2503
    apply (rule subset_inj_on [OF "2.prems"(3)])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2504
    by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2505
  from span_breakdown[of a "insert a b", simplified, OF "2.prems"(4)]
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2506
  obtain k where k: "x - k*\<^sub>R a \<in> span (b -{a})" by blast
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2507
  have "f (x - k*\<^sub>R a) \<in> span (f ` b)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2508
    unfolding span_linear_image[OF lf]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2509
    apply (rule imageI)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2510
    using k span_mono[of "b-{a}" b] by blast
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2511
  hence "f x - k*\<^sub>R f a \<in> span (f ` b)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2512
    by (simp add: linear_sub[OF lf] linear_cmul[OF lf])
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2513
  hence th: "-k *\<^sub>R f a \<in> span (f ` b)"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2514
    using "2.prems"(5) by simp
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2515
  {assume k0: "k = 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2516
    from k0 k have "x \<in> span (b -{a})" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2517
    then have "x \<in> span b" using span_mono[of "b-{a}" b]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2518
      by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2519
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2520
  {assume k0: "k \<noteq> 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2521
    from span_mul[OF th, of "- 1/ k"] k0
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2522
    have th1: "f a \<in> span (f ` b)"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2523
      by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2524
    from inj_on_image_set_diff[OF "2.prems"(3), of "insert a b " "{a}", symmetric]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2525
    have tha: "f ` insert a b - f ` {a} = f ` (insert a b - {a})" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2526
    from "2.prems"(2)[unfolded dependent_def bex_simps(10), rule_format, of "f a"]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2527
    have "f a \<notin> span (f ` b)" using tha
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2528
      using "2.hyps"(2)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2529
      "2.prems"(3) by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2530
    with th1 have False by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2531
    then have "x \<in> span b" by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2532
  ultimately have xsb: "x \<in> span b" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2533
  from "2.hyps"(3)[OF fb ifb fib xsb "2.prems"(5)]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2534
  show "x = 0" .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2535
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2536
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2537
text {* We can extend a linear mapping from basis. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2538
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2539
lemma linear_independent_extend_lemma:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2540
  fixes f :: "'a::real_vector \<Rightarrow> 'b::real_vector"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2541
  assumes fi: "finite B" and ib: "independent B"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2542
  shows "\<exists>g. (\<forall>x\<in> span B. \<forall>y\<in> span B. g (x + y) = g x + g y)
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2543
           \<and> (\<forall>x\<in> span B. \<forall>c. g (c*\<^sub>R x) = c *\<^sub>R g x)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2544
           \<and> (\<forall>x\<in> B. g x = f x)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2545
using ib fi
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2546
proof(induct rule: finite_induct[OF fi])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2547
  case 1 thus ?case by (auto simp add: span_empty)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2548
next
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2549
  case (2 a b)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2550
  from "2.prems" "2.hyps" have ibf: "independent b" "finite b"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2551
    by (simp_all add: independent_insert)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2552
  from "2.hyps"(3)[OF ibf] obtain g where
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2553
    g: "\<forall>x\<in>span b. \<forall>y\<in>span b. g (x + y) = g x + g y"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2554
    "\<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
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2555
  let ?h = "\<lambda>z. SOME k. (z - k *\<^sub>R a) \<in> span b"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2556
  {fix z assume z: "z \<in> span (insert a b)"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2557
    have th0: "z - ?h z *\<^sub>R a \<in> span b"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2558
      apply (rule someI_ex)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2559
      unfolding span_breakdown_eq[symmetric]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2560
      using z .
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2561
    {fix k assume k: "z - k *\<^sub>R a \<in> span b"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2562
      have eq: "z - ?h z *\<^sub>R a - (z - k*\<^sub>R a) = (k - ?h z) *\<^sub>R a"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2563
        by (simp add: field_simps scaleR_left_distrib [symmetric])
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2564
      from span_sub[OF th0 k]
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2565
      have khz: "(k - ?h z) *\<^sub>R a \<in> span b" by (simp add: eq)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2566
      {assume "k \<noteq> ?h z" hence k0: "k - ?h z \<noteq> 0" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2567
        from k0 span_mul[OF khz, of "1 /(k - ?h z)"]
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2568
        have "a \<in> span b" by simp
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2569
        with "2.prems"(1) "2.hyps"(2) have False
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2570
          by (auto simp add: dependent_def)}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2571
      then have "k = ?h z" by blast}
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2572
    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}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2573
  note h = this
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2574
  let ?g = "\<lambda>z. ?h z *\<^sub>R f a + g (z - ?h z *\<^sub>R a)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2575
  {fix x y assume x: "x \<in> span (insert a b)" and y: "y \<in> span (insert a b)"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2576
    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)"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2577
      by (simp add: algebra_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2578
    have addh: "?h (x + y) = ?h x + ?h y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2579
      apply (rule conjunct2[OF h, rule_format, symmetric])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2580
      apply (rule span_add[OF x y])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2581
      unfolding tha
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2582
      by (metis span_add x y conjunct1[OF h, rule_format])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2583
    have "?g (x + y) = ?g x + ?g y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2584
      unfolding addh tha
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2585
      g(1)[rule_format,OF conjunct1[OF h, OF x] conjunct1[OF h, OF y]]
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2586
      by (simp add: scaleR_left_distrib)}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2587
  moreover
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2588
  {fix x:: "'a" and c:: real  assume x: "x \<in> span (insert a b)"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2589
    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)"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2590
      by (simp add: algebra_simps)
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2591
    have hc: "?h (c *\<^sub>R x) = c * ?h x"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2592
      apply (rule conjunct2[OF h, rule_format, symmetric])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2593
      apply (metis span_mul x)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2594
      by (metis tha span_mul x conjunct1[OF h])
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2595
    have "?g (c *\<^sub>R x) = c*\<^sub>R ?g x"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2596
      unfolding hc tha g(2)[rule_format, OF conjunct1[OF h, OF x]]
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2597
      by (simp add: algebra_simps)}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2598
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2599
  {fix x assume x: "x \<in> (insert a b)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2600
    {assume xa: "x = a"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2601
      have ha1: "1 = ?h a"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2602
        apply (rule conjunct2[OF h, rule_format])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2603
        apply (metis span_superset insertI1)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2604
        using conjunct1[OF h, OF span_superset, OF insertI1]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2605
        by (auto simp add: span_0)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2606
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2607
      from xa ha1[symmetric] have "?g x = f x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2608
        apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2609
        using g(2)[rule_format, OF span_0, of 0]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2610
        by simp}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2611
    moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2612
    {assume xb: "x \<in> b"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2613
      have h0: "0 = ?h x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2614
        apply (rule conjunct2[OF h, rule_format])
36362
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
  2615
        apply (metis  span_superset x)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2616
        apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2617
        apply (metis span_superset xb)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2618
        done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2619
      have "?g x = f x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2620
        by (simp add: h0[symmetric] g(3)[rule_format, OF xb])}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2621
    ultimately have "?g x = f x" using x by blast }
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2622
  ultimately show ?case apply - apply (rule exI[where x="?g"]) by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2623
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2624
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2625
lemma linear_independent_extend:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2626
  assumes iB: "independent (B:: ('a::euclidean_space) set)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2627
  shows "\<exists>g. linear g \<and> (\<forall>x\<in>B. g x = f x)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2628
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2629
  from maximal_independent_subset_extend[of B UNIV] iB
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2630
  obtain C where C: "B \<subseteq> C" "independent C" "\<And>x. x \<in> span C" by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2631
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2632
  from C(2) independent_bound[of C] linear_independent_extend_lemma[of C f]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2633
  obtain g where g: "(\<forall>x\<in> span C. \<forall>y\<in> span C. g (x + y) = g x + g y)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2634
           \<and> (\<forall>x\<in> span C. \<forall>c. g (c*\<^sub>R x) = c *\<^sub>R g x)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2635
           \<and> (\<forall>x\<in> C. g x = f x)" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2636
  from g show ?thesis unfolding linear_def using C
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2637
    apply clarsimp by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2638
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2639
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2640
text {* Can construct an isomorphism between spaces of same dimension. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2641
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2642
lemma card_le_inj: assumes fA: "finite A" and fB: "finite B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2643
  and c: "card A \<le> card B" shows "(\<exists>f. f ` A \<subseteq> B \<and> inj_on f A)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2644
using fB c
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2645
proof(induct arbitrary: B rule: finite_induct[OF fA])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2646
  case 1 thus ?case by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2647
next
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2648
  case (2 x s t)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2649
  thus ?case
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2650
  proof(induct rule: finite_induct[OF "2.prems"(1)])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2651
    case 1    then show ?case by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2652
  next
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2653
    case (2 y t)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2654
    from "2.prems"(1,2,5) "2.hyps"(1,2) have cst:"card s \<le> card t" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2655
    from "2.prems"(3) [OF "2.hyps"(1) cst] obtain f where
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2656
      f: "f ` s \<subseteq> t \<and> inj_on f s" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2657
    from f "2.prems"(2) "2.hyps"(2) show ?case
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2658
      apply -
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2659
      apply (rule exI[where x = "\<lambda>z. if z = x then y else f z"])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2660
      by (auto simp add: inj_on_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2661
  qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2662
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2663
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2664
lemma card_subset_eq: assumes fB: "finite B" and AB: "A \<subseteq> B" and
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2665
  c: "card A = card B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2666
  shows "A = B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2667
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2668
  from fB AB have fA: "finite A" by (auto intro: finite_subset)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2669
  from fA fB have fBA: "finite (B - A)" by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2670
  have e: "A \<inter> (B - A) = {}" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2671
  have eq: "A \<union> (B - A) = B" using AB by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2672
  from card_Un_disjoint[OF fA fBA e, unfolded eq c]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2673
  have "card (B - A) = 0" by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2674
  hence "B - A = {}" unfolding card_eq_0_iff using fA fB by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2675
  with AB show "A = B" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2676
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2677
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2678
lemma subspace_isomorphism:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2679
  assumes s: "subspace (S:: ('a::euclidean_space) set)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2680
  and t: "subspace (T :: ('b::euclidean_space) set)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2681
  and d: "dim S = dim T"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2682
  shows "\<exists>f. linear f \<and> f ` S = T \<and> inj_on f S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2683
proof-
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2684
  from basis_exists[of S] independent_bound obtain B where
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2685
    B: "B \<subseteq> S" "independent B" "S \<subseteq> span B" "card B = dim S" and fB: "finite B" by blast
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2686
  from basis_exists[of T] independent_bound obtain C where
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2687
    C: "C \<subseteq> T" "independent C" "T \<subseteq> span C" "card C = dim T" and fC: "finite C" by blast
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2688
  from B(4) C(4) card_le_inj[of B C] d obtain f where
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2689
    f: "f ` B \<subseteq> C" "inj_on f B" using `finite B` `finite C` by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2690
  from linear_independent_extend[OF B(2)] obtain g where
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2691
    g: "linear g" "\<forall>x\<in> B. g x = f x" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2692
  from inj_on_iff_eq_card[OF fB, of f] f(2)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2693
  have "card (f ` B) = card B" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2694
  with B(4) C(4) have ceq: "card (f ` B) = card C" using d
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2695
    by simp
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2696
  have "g ` B = f ` B" using g(2)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2697
    by (auto simp add: image_iff)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2698
  also have "\<dots> = C" using card_subset_eq[OF fC f(1) ceq] .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2699
  finally have gBC: "g ` B = C" .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2700
  have gi: "inj_on g B" using f(2) g(2)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2701
    by (auto simp add: inj_on_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2702
  note g0 = linear_indep_image_lemma[OF g(1) fB, unfolded gBC, OF C(2) gi]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2703
  {fix x y assume x: "x \<in> S" and y: "y \<in> S" and gxy:"g x = g y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2704
    from B(3) x y have x': "x \<in> span B" and y': "y \<in> span B" by blast+
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2705
    from gxy have th0: "g (x - y) = 0" by (simp add: linear_sub[OF g(1)])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2706
    have th1: "x - y \<in> span B" using x' y' by (metis span_sub)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2707
    have "x=y" using g0[OF th1 th0] by simp }
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2708
  then have giS: "inj_on g S"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2709
    unfolding inj_on_def by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2710
  from span_subspace[OF B(1,3) s]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2711
  have "g ` S = span (g ` B)" by (simp add: span_linear_image[OF g(1)])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2712
  also have "\<dots> = span C" unfolding gBC ..
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2713
  also have "\<dots> = T" using span_subspace[OF C(1,3) t] .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2714
  finally have gS: "g ` S = T" .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2715
  from g(1) gS giS show ?thesis by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2716
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2717
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2718
text {* Linear functions are equal on a subspace if they are on a spanning set. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2719
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2720
lemma subspace_kernel:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2721
  assumes lf: "linear f"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2722
  shows "subspace {x. f x = 0}"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2723
apply (simp add: subspace_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2724
by (simp add: linear_add[OF lf] linear_cmul[OF lf] linear_0[OF lf])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2725
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2726
lemma linear_eq_0_span:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2727
  assumes lf: "linear f" and f0: "\<forall>x\<in>B. f x = 0"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2728
  shows "\<forall>x \<in> span B. f x = 0"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2729
proof
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2730
  fix x assume x: "x \<in> span B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2731
  let ?P = "\<lambda>x. f x = 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2732
  from subspace_kernel[OF lf] have "subspace ?P" unfolding Collect_def .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2733
  with x f0 span_induct[of B "?P" x] show "f x = 0" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2734
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2735
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2736
lemma linear_eq_0:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2737
  assumes lf: "linear f" and SB: "S \<subseteq> span B" and f0: "\<forall>x\<in>B. f x = 0"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2738
  shows "\<forall>x \<in> S. f x = 0"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2739
  by (metis linear_eq_0_span[OF lf] subset_eq SB f0)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2740
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2741
lemma linear_eq:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2742
  assumes lf: "linear f" and lg: "linear g" and S: "S \<subseteq> span B"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2743
  and fg: "\<forall> x\<in> B. f x = g x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2744
  shows "\<forall>x\<in> S. f x = g x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2745
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2746
  let ?h = "\<lambda>x. f x - g x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2747
  from fg have fg': "\<forall>x\<in> B. ?h x = 0" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2748
  from linear_eq_0[OF linear_compose_sub[OF lf lg] S fg']
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2749
  show ?thesis by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2750
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2751
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2752
lemma linear_eq_stdbasis:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2753
  assumes lf: "linear (f::'a::euclidean_space \<Rightarrow> _)" and lg: "linear g"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2754
  and fg: "\<forall>i<DIM('a::euclidean_space). f (basis i) = g(basis i)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2755
  shows "f = g"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2756
proof-
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2757
  let ?U = "{..<DIM('a)}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2758
  let ?I = "(basis::nat=>'a) ` {..<DIM('a)}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2759
  {fix x assume x: "x \<in> (UNIV :: 'a set)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2760
    from equalityD2[OF span_basis'[where 'a='a]]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2761
    have IU: " (UNIV :: 'a set) \<subseteq> span ?I" by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2762
    have "f x = g x" apply(rule linear_eq[OF lf lg IU,rule_format]) using fg x by auto }
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2763
  then show ?thesis by (auto intro: ext)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2764
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2765
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2766
text {* Similar results for bilinear functions. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2767
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2768
lemma bilinear_eq:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  2769
  assumes bf: "bilinear f"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2770
  and bg: "bilinear g"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2771
  and SB: "S \<subseteq> span B" and TC: "T \<subseteq> span C"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2772
  and fg: "\<forall>x\<in> B. \<forall>y\<in> C. f x y = g x y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2773
  shows "\<forall>x\<in>S. \<forall>y\<in>T. f x y = g x y "
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2774
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2775
  let ?P = "\<lambda>x. \<forall>y\<in> span C. f x y = g x y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2776
  from bf bg have sp: "subspace ?P"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2777
    unfolding bilinear_def linear_def subspace_def bf bg
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2778
    by(auto simp add: span_0 mem_def bilinear_lzero[OF bf] bilinear_lzero[OF bg] span_add Ball_def intro:  bilinear_ladd[OF bf])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2779
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2780
  have "\<forall>x \<in> span B. \<forall>y\<in> span C. f x y = g x y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2781
    apply -
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2782
    apply (rule ballI)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2783
    apply (rule span_induct[of B ?P])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2784
    defer
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2785
    apply (rule sp)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2786
    apply assumption
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2787
    apply (clarsimp simp add: Ball_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2788
    apply (rule_tac P="\<lambda>y. f xa y = g xa y" and S=C in span_induct)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2789
    using fg
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2790
    apply (auto simp add: subspace_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2791
    using bf bg unfolding bilinear_def linear_def
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2792
    by(auto simp add: span_0 mem_def bilinear_rzero[OF bf] bilinear_rzero[OF bg] span_add Ball_def intro:  bilinear_ladd[OF bf])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2793
  then show ?thesis using SB TC by (auto intro: ext)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2794
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2795
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2796
lemma bilinear_eq_stdbasis: fixes f::"'a::euclidean_space \<Rightarrow> 'b::euclidean_space \<Rightarrow> _"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2797
  assumes bf: "bilinear f"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2798
  and bg: "bilinear g"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2799
  and fg: "\<forall>i<DIM('a). \<forall>j<DIM('b). f (basis i) (basis j) = g (basis i) (basis j)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2800
  shows "f = g"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2801
proof-
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2802
  from fg have th: "\<forall>x \<in> (basis ` {..<DIM('a)}). \<forall>y\<in> (basis ` {..<DIM('b)}). f x y = g x y" by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2803
  from bilinear_eq[OF bf bg equalityD2[OF span_basis'] equalityD2[OF span_basis'] th]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2804
  show ?thesis by (blast intro: ext)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2805
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2806
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2807
text {* Detailed theorems about left and right invertibility in general case. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2808
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2809
lemma linear_injective_left_inverse: fixes f::"'a::euclidean_space => 'b::euclidean_space"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2810
  assumes lf: "linear f" and fi: "inj f"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2811
  shows "\<exists>g. linear g \<and> g o f = id"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2812
proof-
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2813
  from linear_independent_extend[OF independent_injective_image, OF independent_basis, OF lf fi]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2814
  obtain h:: "'b => 'a" where h: "linear h"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2815
    " \<forall>x \<in> f ` basis ` {..<DIM('a)}. h x = inv f x" by blast
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2816
  from h(2)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2817
  have th: "\<forall>i<DIM('a). (h \<circ> f) (basis i) = id (basis i)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2818
    using inv_o_cancel[OF fi, unfolded expand_fun_eq id_def o_def]
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2819
    by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2820
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2821
  from linear_eq_stdbasis[OF linear_compose[OF lf h(1)] linear_id th]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2822
  have "h o f = id" .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2823
  then show ?thesis using h(1) by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2824
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2825
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2826
lemma linear_surjective_right_inverse: fixes f::"'a::euclidean_space => 'b::euclidean_space"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2827
  assumes lf: "linear f" and sf: "surj f"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2828
  shows "\<exists>g. linear g \<and> f o g = id"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2829
proof-
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2830
  from linear_independent_extend[OF independent_basis[where 'a='b],of "inv f"]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2831
  obtain h:: "'b \<Rightarrow> 'a" where
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2832
    h: "linear h" "\<forall> x\<in> basis ` {..<DIM('b)}. h x = inv f x" by blast
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2833
  from h(2)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2834
  have th: "\<forall>i<DIM('b). (f o h) (basis i) = id (basis i)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2835
    using sf by(auto simp add: surj_iff o_def expand_fun_eq)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2836
  from linear_eq_stdbasis[OF linear_compose[OF h(1) lf] linear_id th]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2837
  have "f o h = id" .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2838
  then show ?thesis using h(1) by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2839
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2840
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2841
text {* An injective map @{typ "'a::euclidean_space \<Rightarrow> 'b::euclidean_space"} is also surjective. *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2842
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2843
lemma linear_injective_imp_surjective:  fixes f::"'a::euclidean_space => 'a::euclidean_space"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2844
  assumes lf: "linear f" and fi: "inj f"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2845
  shows "surj f"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2846
proof-
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2847
  let ?U = "UNIV :: 'a set"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2848
  from basis_exists[of ?U] obtain B
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2849
    where B: "B \<subseteq> ?U" "independent B" "?U \<subseteq> span B" "card B = dim ?U"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2850
    by blast
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2851
  from B(4) have d: "dim ?U = card B" by simp
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2852
  have th: "?U \<subseteq> span (f ` B)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2853
    apply (rule card_ge_dim_independent)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2854
    apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2855
    apply (rule independent_injective_image[OF B(2) lf fi])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2856
    apply (rule order_eq_refl)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2857
    apply (rule sym)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2858
    unfolding d
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2859
    apply (rule card_image)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2860
    apply (rule subset_inj_on[OF fi])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2861
    by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2862
  from th show ?thesis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2863
    unfolding span_linear_image[OF lf] surj_def
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2864
    using B(3) by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2865
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2866
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2867
text {* And vice versa. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2868
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2869
lemma surjective_iff_injective_gen:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2870
  assumes fS: "finite S" and fT: "finite T" and c: "card S = card T"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2871
  and ST: "f ` S \<subseteq> T"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2872
  shows "(\<forall>y \<in> T. \<exists>x \<in> S. f x = y) \<longleftrightarrow> inj_on f S" (is "?lhs \<longleftrightarrow> ?rhs")
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2873
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2874
  {assume h: "?lhs"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2875
    {fix x y assume x: "x \<in> S" and y: "y \<in> S" and f: "f x = f y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2876
      from x fS have S0: "card S \<noteq> 0" by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2877
      {assume xy: "x \<noteq> y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2878
        have th: "card S \<le> card (f ` (S - {y}))"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2879
          unfolding c
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2880
          apply (rule card_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2881
          apply (rule finite_imageI)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2882
          using fS apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2883
          using h xy x y f unfolding subset_eq image_iff
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2884
          apply auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2885
          apply (case_tac "xa = f x")
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2886
          apply (rule bexI[where x=x])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2887
          apply auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2888
          done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2889
        also have " \<dots> \<le> card (S -{y})"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2890
          apply (rule card_image_le)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2891
          using fS by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2892
        also have "\<dots> \<le> card S - 1" using y fS by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2893
        finally have False  using S0 by arith }
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2894
      then have "x = y" by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2895
    then have ?rhs unfolding inj_on_def by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2896
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2897
  {assume h: ?rhs
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2898
    have "f ` S = T"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2899
      apply (rule card_subset_eq[OF fT ST])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2900
      unfolding card_image[OF h] using c .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2901
    then have ?lhs by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2902
  ultimately show ?thesis by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2903
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2904
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2905
lemma linear_surjective_imp_injective: fixes f::"'a::euclidean_space => 'a::euclidean_space"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2906
  assumes lf: "linear f" and sf: "surj f"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2907
  shows "inj f"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2908
proof-
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2909
  let ?U = "UNIV :: 'a set"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2910
  from basis_exists[of ?U] obtain B
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2911
    where B: "B \<subseteq> ?U" "independent B" "?U \<subseteq> span B" and d: "card B = dim ?U"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2912
    by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2913
  {fix x assume x: "x \<in> span B" and fx: "f x = 0"
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2914
    from B(2) have fB: "finite B" using independent_bound by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2915
    have fBi: "independent (f ` B)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2916
      apply (rule card_le_dim_spanning[of "f ` B" ?U])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2917
      apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2918
      using sf B(3)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2919
      unfolding span_linear_image[OF lf] surj_def subset_eq image_iff
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2920
      apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2921
      using fB apply (blast intro: finite_imageI)
33715
8cce3a34c122 removed hassize predicate
hoelzl
parents: 33714
diff changeset
  2922
      unfolding d[symmetric]
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2923
      apply (rule card_image_le)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2924
      apply (rule fB)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2925
      done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2926
    have th0: "dim ?U \<le> card (f ` B)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2927
      apply (rule span_card_ge_dim)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2928
      apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2929
      unfolding span_linear_image[OF lf]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2930
      apply (rule subset_trans[where B = "f ` UNIV"])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2931
      using sf unfolding surj_def apply blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2932
      apply (rule image_mono)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2933
      apply (rule B(3))
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2934
      apply (metis finite_imageI fB)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2935
      done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2936
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2937
    moreover have "card (f ` B) \<le> card B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2938
      by (rule card_image_le, rule fB)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2939
    ultimately have th1: "card B = card (f ` B)" unfolding d by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2940
    have fiB: "inj_on f B"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2941
      unfolding surjective_iff_injective_gen[OF fB finite_imageI[OF fB] th1 subset_refl, symmetric] by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2942
    from linear_indep_image_lemma[OF lf fB fBi fiB x] fx
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2943
    have "x = 0" by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2944
  note th = this
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2945
  from th show ?thesis unfolding linear_injective_0[OF lf]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2946
    using B(3) by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2947
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2948
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2949
text {* Hence either is enough for isomorphism. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2950
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2951
lemma left_right_inverse_eq:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2952
  assumes fg: "f o g = id" and gh: "g o h = id"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2953
  shows "f = h"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2954
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2955
  have "f = f o (g o h)" unfolding gh by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2956
  also have "\<dots> = (f o g) o h" by (simp add: o_assoc)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2957
  finally show "f = h" unfolding fg by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2958
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2959
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2960
lemma isomorphism_expand:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2961
  "f o g = id \<and> g o f = id \<longleftrightarrow> (\<forall>x. f(g x) = x) \<and> (\<forall>x. g(f x) = x)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2962
  by (simp add: expand_fun_eq o_def id_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2963
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2964
lemma linear_injective_isomorphism: fixes f::"'a::euclidean_space => 'a::euclidean_space"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2965
  assumes lf: "linear f" and fi: "inj f"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2966
  shows "\<exists>f'. linear f' \<and> (\<forall>x. f' (f x) = x) \<and> (\<forall>x. f (f' x) = x)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2967
unfolding isomorphism_expand[symmetric]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2968
using linear_surjective_right_inverse[OF lf linear_injective_imp_surjective[OF lf fi]] linear_injective_left_inverse[OF lf fi]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2969
by (metis left_right_inverse_eq)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2970
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2971
lemma linear_surjective_isomorphism: fixes f::"'a::euclidean_space => 'a::euclidean_space"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2972
  assumes lf: "linear f" and sf: "surj f"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2973
  shows "\<exists>f'. linear f' \<and> (\<forall>x. f' (f x) = x) \<and> (\<forall>x. f (f' x) = x)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2974
unfolding isomorphism_expand[symmetric]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2975
using linear_surjective_right_inverse[OF lf sf] linear_injective_left_inverse[OF lf linear_surjective_imp_injective[OF lf sf]]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2976
by (metis left_right_inverse_eq)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2977
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2978
text {* Left and right inverses are the same for @{typ "'a::euclidean_space => 'a::euclidean_space"}. *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2979
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2980
lemma linear_inverse_left: fixes f::"'a::euclidean_space => 'a::euclidean_space"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2981
  assumes lf: "linear f" and lf': "linear f'"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2982
  shows "f o f' = id \<longleftrightarrow> f' o f = id"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2983
proof-
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2984
  {fix f f':: "'a => 'a"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2985
    assume lf: "linear f" "linear f'" and f: "f o f' = id"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2986
    from f have sf: "surj f"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2987
      apply (auto simp add: o_def expand_fun_eq id_def surj_def)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2988
      by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2989
    from linear_surjective_isomorphism[OF lf(1) sf] lf f
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2990
    have "f' o f = id" unfolding expand_fun_eq o_def id_def
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2991
      by metis}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2992
  then show ?thesis using lf lf' by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2993
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2994
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  2995
text {* Moreover, a one-sided inverse is automatically linear. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2996
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2997
lemma left_inverse_linear: fixes f::"'a::euclidean_space => 'a::euclidean_space"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  2998
  assumes lf: "linear f" and gf: "g o f = id"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  2999
  shows "linear g"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3000
proof-
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3001
  from gf have fi: "inj f" apply (auto simp add: inj_on_def o_def id_def expand_fun_eq)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3002
    by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3003
  from linear_injective_isomorphism[OF lf fi]
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3004
  obtain h:: "'a \<Rightarrow> 'a" where
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3005
    h: "linear h" "\<forall>x. h (f x) = x" "\<forall>x. f (h x) = x" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3006
  have "h = g" apply (rule ext) using gf h(2,3)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3007
    apply (simp add: o_def id_def expand_fun_eq)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3008
    by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3009
  with h(1) show ?thesis by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3010
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3011
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  3012
subsection {* Infinity norm *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3013
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3014
definition "infnorm (x::'a::euclidean_space) = Sup {abs(x$$i) |i. i<DIM('a)}"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3015
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3016
lemma numseg_dimindex_nonempty: "\<exists>i. i \<in> (UNIV :: 'n set)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3017
  by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3018
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3019
lemma infnorm_set_image:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3020
  "{abs((x::'a::euclidean_space)$$i) |i. i<DIM('a)} =
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3021
  (\<lambda>i. abs(x$$i)) ` {..<DIM('a)}" by blast
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3022
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3023
lemma infnorm_set_lemma:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3024
  shows "finite {abs((x::'a::euclidean_space)$$i) |i. i<DIM('a)}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3025
  and "{abs(x$$i) |i. i<DIM('a::euclidean_space)} \<noteq> {}"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3026
  unfolding infnorm_set_image
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3027
  by (auto intro: finite_imageI)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3028
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3029
lemma infnorm_pos_le: "0 \<le> infnorm (x::'a::euclidean_space)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3030
  unfolding infnorm_def
33270
paulson
parents: 33175
diff changeset
  3031
  unfolding Sup_finite_ge_iff[ OF infnorm_set_lemma]
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3032
  unfolding infnorm_set_image
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3033
  by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3034
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3035
lemma infnorm_triangle: "infnorm ((x::'a::euclidean_space) + y) \<le> infnorm x + infnorm y"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3036
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3037
  have th: "\<And>x y (z::real). x - y <= z \<longleftrightarrow> x - z <= y" by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3038
  have th1: "\<And>S f. f ` S = { f i| i. i \<in> S}" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3039
  have th2: "\<And>x (y::real). abs(x + y) - abs(x) <= abs(y)" by arith
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3040
  have *:"\<And>i. i \<in> {..<DIM('a)} \<longleftrightarrow> i <DIM('a)" by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3041
  show ?thesis
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3042
  unfolding infnorm_def unfolding  Sup_finite_le_iff[ OF infnorm_set_lemma[where 'a='a]]
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3043
  apply (subst diff_le_eq[symmetric])
33270
paulson
parents: 33175
diff changeset
  3044
  unfolding Sup_finite_ge_iff[ OF infnorm_set_lemma]
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3045
  unfolding infnorm_set_image bex_simps
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3046
  apply (subst th)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3047
  unfolding th1 *
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3048
  unfolding Sup_finite_ge_iff[ OF infnorm_set_lemma[where 'a='a]]
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3049
  unfolding infnorm_set_image ball_simps bex_simps
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3050
  unfolding euclidean_simps by (metis th2)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3051
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3052
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3053
lemma infnorm_eq_0: "infnorm x = 0 \<longleftrightarrow> (x::_::euclidean_space) = 0"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3054
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3055
  have "infnorm x <= 0 \<longleftrightarrow> x = 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3056
    unfolding infnorm_def
33270
paulson
parents: 33175
diff changeset
  3057
    unfolding Sup_finite_le_iff[OF infnorm_set_lemma]
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3058
    unfolding infnorm_set_image ball_simps
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3059
    apply(subst (1) euclidean_eq) unfolding euclidean_component.zero
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3060
    by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3061
  then show ?thesis using infnorm_pos_le[of x] by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3062
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3063
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3064
lemma infnorm_0: "infnorm 0 = 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3065
  by (simp add: infnorm_eq_0)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3066
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3067
lemma infnorm_neg: "infnorm (- x) = infnorm x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3068
  unfolding infnorm_def
33270
paulson
parents: 33175
diff changeset
  3069
  apply (rule cong[of "Sup" "Sup"])
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3070
  apply blast by(auto simp add: euclidean_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3071
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3072
lemma infnorm_sub: "infnorm (x - y) = infnorm (y - x)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3073
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3074
  have "y - x = - (x - y)" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3075
  then show ?thesis  by (metis infnorm_neg)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3076
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3077
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3078
lemma real_abs_sub_infnorm: "\<bar> infnorm x - infnorm y\<bar> \<le> infnorm (x - y)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3079
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3080
  have th: "\<And>(nx::real) n ny. nx <= n + ny \<Longrightarrow> ny <= n + nx ==> \<bar>nx - ny\<bar> <= n"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3081
    by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3082
  from infnorm_triangle[of "x - y" " y"] infnorm_triangle[of "x - y" "-x"]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3083
  have ths: "infnorm x \<le> infnorm (x - y) + infnorm y"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3084
    "infnorm y \<le> infnorm (x - y) + infnorm x"
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
  3085
    by (simp_all add: field_simps infnorm_neg diff_def[symmetric])
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3086
  from th[OF ths]  show ?thesis .
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3087
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3088
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3089
lemma real_abs_infnorm: " \<bar>infnorm x\<bar> = infnorm x"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3090
  using infnorm_pos_le[of x] by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3091
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3092
lemma component_le_infnorm:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3093
  shows "\<bar>x$$i\<bar> \<le> infnorm (x::'a::euclidean_space)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3094
proof(cases "i<DIM('a)")
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3095
  case False thus ?thesis using infnorm_pos_le by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3096
next case True
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3097
  let ?U = "{..<DIM('a)}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3098
  let ?S = "{\<bar>x$$i\<bar> |i. i<DIM('a)}"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3099
  have fS: "finite ?S" unfolding image_Collect[symmetric]
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3100
    apply (rule finite_imageI) by simp
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3101
  have S0: "?S \<noteq> {}" by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3102
  have th1: "\<And>S f. f ` S = { f i| i. i \<in> S}" by blast
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3103
  show ?thesis unfolding infnorm_def  
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3104
    apply(subst Sup_finite_ge_iff) using Sup_finite_in[OF fS S0]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3105
    using infnorm_set_image using True by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3106
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3107
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3108
lemma infnorm_mul_lemma: "infnorm(a *\<^sub>R x) <= \<bar>a\<bar> * infnorm x"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3109
  apply (subst infnorm_def)
33270
paulson
parents: 33175
diff changeset
  3110
  unfolding Sup_finite_le_iff[OF infnorm_set_lemma]
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3111
  unfolding infnorm_set_image ball_simps euclidean_scaleR abs_mult
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3112
  using component_le_infnorm[of x] by(auto intro: mult_mono) 
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3113
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3114
lemma infnorm_mul: "infnorm(a *\<^sub>R x) = abs a * infnorm x"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3115
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3116
  {assume a0: "a = 0" hence ?thesis by (simp add: infnorm_0) }
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3117
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3118
  {assume a0: "a \<noteq> 0"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3119
    from a0 have th: "(1/a) *\<^sub>R (a *\<^sub>R x) = x" by simp
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3120
    from a0 have ap: "\<bar>a\<bar> > 0" by arith
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3121
    from infnorm_mul_lemma[of "1/a" "a *\<^sub>R x"]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3122
    have "infnorm x \<le> 1/\<bar>a\<bar> * infnorm (a*\<^sub>R x)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3123
      unfolding th by simp
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3124
    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)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3125
    then have "\<bar>a\<bar> * infnorm x \<le> infnorm (a*\<^sub>R x)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3126
      using ap by (simp add: field_simps)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3127
    with infnorm_mul_lemma[of a x] have ?thesis by arith }
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3128
  ultimately show ?thesis by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3129
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3130
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3131
lemma infnorm_pos_lt: "infnorm x > 0 \<longleftrightarrow> x \<noteq> 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3132
  using infnorm_pos_le[of x] infnorm_eq_0[of x] by arith
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3133
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  3134
text {* Prove that it differs only up to a bound from Euclidean norm. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3135
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3136
lemma infnorm_le_norm: "infnorm x \<le> norm x"
33270
paulson
parents: 33175
diff changeset
  3137
  unfolding infnorm_def Sup_finite_le_iff[OF infnorm_set_lemma]
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3138
  unfolding infnorm_set_image  ball_simps
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3139
  by (metis component_le_norm)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3140
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3141
lemma card_enum: "card {1 .. n} = n" by auto
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3142
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3143
lemma norm_le_infnorm: "norm(x) <= sqrt(real DIM('a)) * infnorm(x::'a::euclidean_space)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3144
proof-
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3145
  let ?d = "DIM('a)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3146
  have "real ?d \<ge> 0" by simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3147
  hence d2: "(sqrt (real ?d))^2 = real ?d"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3148
    by (auto intro: real_sqrt_pow2)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3149
  have th: "sqrt (real ?d) * infnorm x \<ge> 0"
36362
06475a1547cb fix lots of looping simp calls and other warnings
huffman
parents: 36336
diff changeset
  3150
    by (simp add: zero_le_mult_iff infnorm_pos_le)
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
  3151
  have th1: "x \<bullet> x \<le> (sqrt (real ?d) * infnorm x)^2"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3152
    unfolding power_mult_distrib d2
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3153
    unfolding real_of_nat_def apply(subst euclidean_inner)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3154
    apply (subst power2_abs[symmetric])
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3155
    apply(rule order_trans[OF setsum_bounded[where K="\<bar>infnorm x\<bar>\<twosuperior>"]])
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
  3156
    apply(auto simp add: power2_eq_square[symmetric])
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3157
    apply (subst power2_abs[symmetric])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3158
    apply (rule power_mono)
33270
paulson
parents: 33175
diff changeset
  3159
    unfolding infnorm_def  Sup_finite_ge_iff[OF infnorm_set_lemma]
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3160
    unfolding infnorm_set_image bex_simps apply(rule_tac x=i in bexI) by auto
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
  3161
  from real_le_lsqrt[OF inner_ge_zero th th1]
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
  3162
  show ?thesis unfolding norm_eq_sqrt_inner id_def .
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3163
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3164
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  3165
text {* Equality in Cauchy-Schwarz and triangle inequalities. *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3166
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3167
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")
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3168
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3169
  {assume h: "x = 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3170
    hence ?thesis by simp}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3171
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3172
  {assume h: "y = 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3173
    hence ?thesis by simp}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3174
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3175
  {assume x: "x \<noteq> 0" and y: "y \<noteq> 0"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3176
    from inner_eq_zero_iff[of "norm y *\<^sub>R x - norm x *\<^sub>R y"]
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3177
    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)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3178
      using x y
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3179
      unfolding inner_simps
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
  3180
      unfolding power2_norm_eq_inner[symmetric] power2_eq_square diff_eq_0_iff_eq apply (simp add: inner_commute)
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
  3181
      apply (simp add: field_simps) by metis
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3182
    also have "\<dots> \<longleftrightarrow> (2 * norm x * norm y * (norm x * norm y - x \<bullet> y) = 0)" using x y
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
  3183
      by (simp add: field_simps inner_commute)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3184
    also have "\<dots> \<longleftrightarrow> ?lhs" using x y
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3185
      apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3186
      by metis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3187
    finally have ?thesis by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3188
  ultimately show ?thesis by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3189
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3190
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3191
lemma norm_cauchy_schwarz_abs_eq:
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3192
  shows "abs(x \<bullet> y) = norm x * norm y \<longleftrightarrow>
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3193
                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")
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3194
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3195
  have th: "\<And>(x::real) a. a \<ge> 0 \<Longrightarrow> abs x = a \<longleftrightarrow> x = a \<or> x = - a" by arith
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3196
  have "?rhs \<longleftrightarrow> norm x *\<^sub>R y = norm y *\<^sub>R x \<or> norm (- x) *\<^sub>R y = norm y *\<^sub>R (- x)"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3197
    by simp
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3198
  also have "\<dots> \<longleftrightarrow>(x \<bullet> y = norm x * norm y \<or>
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3199
     (-x) \<bullet> y = norm x * norm y)"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3200
    unfolding norm_cauchy_schwarz_eq[symmetric]
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3201
    unfolding norm_minus_cancel norm_scaleR ..
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3202
  also have "\<dots> \<longleftrightarrow> ?lhs"
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
  3203
    unfolding th[OF mult_nonneg_nonneg, OF norm_ge_zero[of x] norm_ge_zero[of y]] inner_simps by auto
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3204
  finally show ?thesis ..
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3205
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3206
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3207
lemma norm_triangle_eq:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3208
  fixes x y :: "'a::real_inner"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3209
  shows "norm(x + y) = norm x + norm y \<longleftrightarrow> norm x *\<^sub>R y = norm y *\<^sub>R x"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3210
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3211
  {assume x: "x =0 \<or> y =0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3212
    hence ?thesis by (cases "x=0", simp_all)}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3213
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3214
  {assume x: "x \<noteq> 0" and y: "y \<noteq> 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3215
    hence "norm x \<noteq> 0" "norm y \<noteq> 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3216
      by simp_all
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3217
    hence n: "norm x > 0" "norm y > 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3218
      using norm_ge_zero[of x] norm_ge_zero[of y]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3219
      by arith+
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3220
    have th: "\<And>(a::real) b c. a + b + c \<noteq> 0 ==> (a = b + c \<longleftrightarrow> a^2 = (b + c)^2)" by algebra
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3221
    have "norm(x + y) = norm x + norm y \<longleftrightarrow> norm(x + y)^ 2 = (norm x + norm y) ^2"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3222
      apply (rule th) using n norm_ge_zero[of "x + y"]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3223
      by arith
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3224
    also have "\<dots> \<longleftrightarrow> norm x *\<^sub>R y = norm y *\<^sub>R x"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3225
      unfolding norm_cauchy_schwarz_eq[symmetric]
35542
8f97d8caabfd replaced \<bullet> with inner
himmelma
parents: 35541
diff changeset
  3226
      unfolding power2_norm_eq_inner inner_simps
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
  3227
      by (simp add: power2_norm_eq_inner[symmetric] power2_eq_square inner_commute field_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3228
    finally have ?thesis .}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3229
  ultimately show ?thesis by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3230
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3231
36666
1ea81fc5227a convert comments to 'text' blocks
huffman
parents: 36623
diff changeset
  3232
subsection {* Collinearity *}
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3233
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3234
definition
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3235
  collinear :: "'a::real_vector set \<Rightarrow> bool" where
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3236
  "collinear S \<longleftrightarrow> (\<exists>u. \<forall>x \<in> S. \<forall> y \<in> S. \<exists>c. x - y = c *\<^sub>R u)"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3237
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3238
lemma collinear_empty:  "collinear {}" by (simp add: collinear_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3239
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3240
lemma collinear_sing: "collinear {x}"
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3241
  by (simp add: collinear_def)
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3242
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3243
lemma collinear_2: "collinear {x, y}"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3244
  apply (simp add: collinear_def)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3245
  apply (rule exI[where x="x - y"])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3246
  apply auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3247
  apply (rule exI[where x=1], simp)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3248
  apply (rule exI[where x="- 1"], simp)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3249
  done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3250
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3251
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")
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3252
proof-
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3253
  {assume "x=0 \<or> y = 0" hence ?thesis
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3254
      by (cases "x = 0", simp_all add: collinear_2 insert_commute)}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3255
  moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3256
  {assume x: "x \<noteq> 0" and y: "y \<noteq> 0"
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3257
    {assume h: "?lhs"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3258
      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
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3259
      from u[rule_format, of x 0] u[rule_format, of y 0]
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3260
      obtain cx and cy where
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3261
        cx: "x = cx *\<^sub>R u" and cy: "y = cy *\<^sub>R u"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3262
        by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3263
      from cx x have cx0: "cx \<noteq> 0" by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3264
      from cy y have cy0: "cy \<noteq> 0" by auto
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3265
      let ?d = "cy / cx"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3266
      from cx cy cx0 have "y = ?d *\<^sub>R x"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3267
        by simp
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3268
      hence ?rhs using x y by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3269
    moreover
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3270
    {assume h: "?rhs"
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3271
      then obtain c where c: "y = c *\<^sub>R x" using x y by blast
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3272
      have ?lhs unfolding collinear_def c
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3273
        apply (rule exI[where x=x])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3274
        apply auto
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3275
        apply (rule exI[where x="- 1"], simp)
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3276
        apply (rule exI[where x= "-c"], simp)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3277
        apply (rule exI[where x=1], simp)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3278
        apply (rule exI[where x="1 - c"], simp add: scaleR_left_diff_distrib)
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3279
        apply (rule exI[where x="c - 1"], simp add: scaleR_left_diff_distrib)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3280
        done}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3281
    ultimately have ?thesis by blast}
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3282
  ultimately show ?thesis by blast
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3283
qed
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3284
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3285
lemma norm_cauchy_schwarz_equal:
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3286
  shows "abs(x \<bullet> y) = norm x * norm y \<longleftrightarrow> collinear {0,x,y}"
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3287
unfolding norm_cauchy_schwarz_abs_eq
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3288
apply (cases "x=0", simp_all add: collinear_2)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3289
apply (cases "y=0", simp_all add: collinear_2 insert_commute)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3290
unfolding collinear_lemma
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3291
apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3292
apply (subgoal_tac "norm x \<noteq> 0")
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3293
apply (subgoal_tac "norm y \<noteq> 0")
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3294
apply (rule iffI)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3295
apply (cases "norm x *\<^sub>R y = norm y *\<^sub>R x")
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3296
apply (rule exI[where x="(1/norm x) * norm y"])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3297
apply (drule sym)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3298
unfolding scaleR_scaleR[symmetric]
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3299
apply (simp add: field_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3300
apply (rule exI[where x="(1/norm x) * - norm y"])
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3301
apply clarify
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3302
apply (drule sym)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3303
unfolding scaleR_scaleR[symmetric]
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3304
apply (simp add: field_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3305
apply (erule exE)
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3306
apply (erule ssubst)
36593
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3307
unfolding scaleR_scaleR
fb69c8cd27bd define linear algebra concepts using scaleR instead of (op *s); generalized many lemmas, though a few theorems that used to work on type int^'n are a bit less general
huffman
parents: 36592
diff changeset
  3308
unfolding norm_scaleR
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3309
apply (subgoal_tac "norm x * c = \<bar>c\<bar> * norm x \<or> norm x * c = - \<bar>c\<bar> * norm x")
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
  3310
apply (case_tac "c <= 0", simp add: field_simps)
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
  3311
apply (simp add: field_simps)
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
  3312
apply (case_tac "c <= 0", simp add: field_simps)
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36336
diff changeset
  3313
apply (simp add: field_simps)
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3314
apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3315
apply simp
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3316
done
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3317
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3318
print_antiquotations
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3319
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3320
section "Instanciate @{typ real} and @{typ complex} as typeclass @{text ordered_euclidean_space}."
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3321
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3322
instantiation real :: real_basis_with_inner
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3323
begin
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3324
definition [simp]: "basis i = (if i = 0 then (1::real) else 0)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3325
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3326
lemma basis_real_range: "basis ` {..<1} = {1::real}" by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3327
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3328
instance proof
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3329
  let ?b = "basis::nat \<Rightarrow> real"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3330
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3331
  from basis_real_range have "independent (?b ` {..<1})" by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3332
  thus "\<exists>d>0. ?b ` {d..} = {0} \<and> independent (?b ` {..<d}) \<and> inj_on ?b {..<d}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3333
    by (auto intro!: exI[of _ 1] inj_onI)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3334
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3335
  { fix x::real
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3336
    have "x \<in> span (range ?b)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3337
      using span_mul[of 1 "range ?b" x] span_clauses(1)[of 1 "range ?b"]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3338
      by auto }
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3339
  thus "span (range ?b) = UNIV" by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3340
qed
33175
2083bde13ce1 distinguished session for multivariate analysis
himmelma
parents:
diff changeset
  3341
end
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3342
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3343
lemma DIM_real[simp]: "DIM(real) = 1"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3344
  by (rule dimension_eq) (auto simp: basis_real_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3345
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3346
instance real::ordered_euclidean_space proof qed(auto simp add:euclidean_component_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3347
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3348
lemma Eucl_real_simps[simp]:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3349
  "(x::real) $$ 0 = x"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3350
  "(\<chi>\<chi> i. f i) = ((f 0)::real)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3351
  "\<And>i. i > 0 \<Longrightarrow> x $$ i = 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3352
  defer apply(subst euclidean_eq) apply safe
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3353
  unfolding euclidean_lambda_beta'
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3354
  unfolding euclidean_component_def by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3355
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3356
instantiation complex :: real_basis_with_inner
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3357
begin
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3358
definition "basis i = (if i = 0 then 1 else if i = 1 then ii else 0)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3359
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3360
lemma complex_basis[simp]:"basis 0 = (1::complex)" "basis 1 = ii" "basis (Suc 0) = ii"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3361
  unfolding basis_complex_def by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3362
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3363
instance
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3364
proof
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3365
  let ?b = "basis::nat \<Rightarrow> complex"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3366
  have [simp]: "(range ?b) = {0, basis 0, basis 1}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3367
    by (auto simp: basis_complex_def split: split_if_asm)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3368
  { fix z::complex
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3369
    have "z \<in> span (range ?b)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3370
      by (auto simp: span_finite complex_equality
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3371
        intro!: exI[of _ "\<lambda>i. if i = 1 then Re z else if i = ii then Im z else 0"]) }
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3372
  thus "span (range ?b) = UNIV" by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3373
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3374
  have "{..<2} = {0, 1::nat}" by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3375
  hence *: "?b ` {..<2} = {1, ii}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3376
    by (auto simp add: basis_complex_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3377
  moreover have "1 \<notin> span {\<i>}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3378
    by (simp add: span_finite complex_equality complex_scaleR_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3379
  hence "independent (?b ` {..<2})"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3380
    by (simp add: * basis_complex_def independent_empty independent_insert)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3381
  ultimately show "\<exists>d>0. ?b ` {d..} = {0} \<and> independent (?b ` {..<d}) \<and> inj_on ?b {..<d}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3382
    by (auto intro!: exI[of _ 2] inj_onI simp: basis_complex_def split: split_if_asm)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3383
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3384
end
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3385
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3386
lemma DIM_complex[simp]: "DIM(complex) = 2"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3387
  by (rule dimension_eq) (auto simp: basis_complex_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3388
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3389
instance complex :: euclidean_space
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3390
  proof qed (auto simp add: basis_complex_def inner_complex_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3391
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents: 36778
diff changeset
  3392
end