src/HOL/Multivariate_Analysis/Cartesian_Euclidean_Space.thy
author wenzelm
Tue, 03 Sep 2013 01:12:40 +0200
changeset 53374 a14d2a854c02
parent 51717 9e7d1c139569
child 53593 a7bcbb5a17d8
permissions -rw-r--r--
tuned proofs -- clarified flow of facts wrt. calculation;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
     1
header {*Instanciates the finite cartesian product of euclidean spaces as a euclidean space.*}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
     2
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
     3
theory Cartesian_Euclidean_Space
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
     4
imports Finite_Cartesian_Product Integration
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
     5
begin
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
     6
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
     7
lemma delta_mult_idempotent:
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
     8
  "(if k=a then 1 else (0::'a::semiring_1)) * (if k=a then 1 else 0) = (if k=a then 1 else 0)"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
     9
  by (cases "k=a") auto
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    10
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    11
lemma setsum_Plus:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    12
  "\<lbrakk>finite A; finite B\<rbrakk> \<Longrightarrow>
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    13
    (\<Sum>x\<in>A <+> B. g x) = (\<Sum>x\<in>A. g (Inl x)) + (\<Sum>x\<in>B. g (Inr x))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    14
  unfolding Plus_def
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    15
  by (subst setsum_Un_disjoint, auto simp add: setsum_reindex)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    16
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    17
lemma setsum_UNIV_sum:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    18
  fixes g :: "'a::finite + 'b::finite \<Rightarrow> _"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    19
  shows "(\<Sum>x\<in>UNIV. g x) = (\<Sum>x\<in>UNIV. g (Inl x)) + (\<Sum>x\<in>UNIV. g (Inr x))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    20
  apply (subst UNIV_Plus_UNIV [symmetric])
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    21
  apply (rule setsum_Plus [OF finite finite])
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    22
  done
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    23
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    24
lemma setsum_mult_product:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    25
  "setsum h {..<A * B :: nat} = (\<Sum>i\<in>{..<A}. \<Sum>j\<in>{..<B}. h (j + i * B))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    26
  unfolding sumr_group[of h B A, unfolded atLeast0LessThan, symmetric]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    27
proof (rule setsum_cong, simp, rule setsum_reindex_cong)
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
    28
  fix i
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
    29
  show "inj_on (\<lambda>j. j + i * B) {..<B}" by (auto intro!: inj_onI)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    30
  show "{i * B..<i * B + B} = (\<lambda>j. j + i * B) ` {..<B}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    31
  proof safe
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    32
    fix j assume "j \<in> {i * B..<i * B + B}"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
    33
    then show "j \<in> (\<lambda>j. j + i * B) ` {..<B}"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    34
      by (auto intro!: image_eqI[of _ _ "j - i * B"])
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    35
  qed simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    36
qed simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    37
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
    38
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    39
subsection{* Basic componentwise operations on vectors. *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    40
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
    41
instantiation vec :: (times, finite) times
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    42
begin
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
    43
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
    44
definition "op * \<equiv> (\<lambda> x y.  (\<chi> i. (x$i) * (y$i)))"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
    45
instance ..
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
    46
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    47
end
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    48
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
    49
instantiation vec :: (one, finite) one
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    50
begin
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
    51
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
    52
definition "1 \<equiv> (\<chi> i. 1)"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
    53
instance ..
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
    54
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    55
end
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    56
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
    57
instantiation vec :: (ord, finite) ord
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    58
begin
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
    59
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
    60
definition "x \<le> y \<longleftrightarrow> (\<forall>i. x$i \<le> y$i)"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
    61
definition "x < y \<longleftrightarrow> (\<forall>i. x$i < y$i)"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
    62
instance ..
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
    63
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    64
end
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    65
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    66
text{* The ordering on one-dimensional vectors is linear. *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    67
49197
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    68
class cart_one =
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    69
  assumes UNIV_one: "card (UNIV \<Colon> 'a set) = Suc 0"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    70
begin
49197
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    71
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    72
subclass finite
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    73
proof
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    74
  from UNIV_one show "finite (UNIV :: 'a set)"
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    75
    by (auto intro!: card_ge_0_finite)
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    76
qed
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    77
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    78
end
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
    79
49197
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    80
instantiation vec :: (linorder, cart_one) linorder
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    81
begin
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    82
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    83
instance
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    84
proof
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    85
  obtain a :: 'b where all: "\<And>P. (\<forall>i. P i) \<longleftrightarrow> P a"
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    86
  proof -
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    87
    have "card (UNIV :: 'b set) = Suc 0" by (rule UNIV_one)
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    88
    then obtain b :: 'b where "UNIV = {b}" by (auto iff: card_Suc_eq)
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    89
    then have "\<And>P. (\<forall>i\<in>UNIV. P i) \<longleftrightarrow> P b" by auto
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    90
    then show thesis by (auto intro: that)
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    91
  qed
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    92
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    93
  note [simp] = less_eq_vec_def less_vec_def all vec_eq_iff field_simps
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    94
  fix x y z :: "'a^'b::cart_one"
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    95
  show "x \<le> x" "(x < y) = (x \<le> y \<and> \<not> y \<le> x)" "x \<le> y \<or> y \<le> x" by auto
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    96
  { assume "x\<le>y" "y\<le>z" then show "x\<le>z" by auto }
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    97
  { assume "x\<le>y" "y\<le>x" then show "x=y" by auto }
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    98
qed
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
    99
e5224d887e12 tuned proofs;
wenzelm
parents: 47108
diff changeset
   100
end
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   101
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   102
text{* Constant Vectors *} 
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   103
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   104
definition "vec x = (\<chi> i. x)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   105
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   106
text{* Also the scalar-vector multiplication. *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   107
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   108
definition vector_scalar_mult:: "'a::times \<Rightarrow> 'a ^ 'n \<Rightarrow> 'a ^ 'n" (infixl "*s" 70)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   109
  where "c *s x = (\<chi> i. c * (x$i))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   110
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   111
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   112
subsection {* A naive proof procedure to lift really trivial arithmetic stuff from the basis of the vector space. *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   113
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   114
method_setup vector = {*
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   115
let
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51641
diff changeset
   116
  val ss1 =
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51641
diff changeset
   117
    simpset_of (put_simpset HOL_basic_ss @{context}
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51641
diff changeset
   118
      addsimps [@{thm setsum_addf} RS sym,
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51641
diff changeset
   119
      @{thm setsum_subtractf} RS sym, @{thm setsum_right_distrib},
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51641
diff changeset
   120
      @{thm setsum_left_distrib}, @{thm setsum_negf} RS sym])
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51641
diff changeset
   121
  val ss2 =
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51641
diff changeset
   122
    simpset_of (@{context} addsimps
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   123
             [@{thm plus_vec_def}, @{thm times_vec_def},
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   124
              @{thm minus_vec_def}, @{thm uminus_vec_def},
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   125
              @{thm one_vec_def}, @{thm zero_vec_def}, @{thm vec_def},
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   126
              @{thm scaleR_vec_def},
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51641
diff changeset
   127
              @{thm vec_lambda_beta}, @{thm vector_scalar_mult_def}])
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51641
diff changeset
   128
  fun vector_arith_tac ctxt ths =
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51641
diff changeset
   129
    simp_tac (put_simpset ss1 ctxt)
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   130
    THEN' (fn i => rtac @{thm setsum_cong2} i
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   131
         ORELSE rtac @{thm setsum_0'} i
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51641
diff changeset
   132
         ORELSE simp_tac (put_simpset HOL_basic_ss ctxt addsimps [@{thm vec_eq_iff}]) i)
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   133
    (* THEN' TRY o clarify_tac HOL_cs  THEN' (TRY o rtac @{thm iffI}) *)
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51641
diff changeset
   134
    THEN' asm_full_simp_tac (put_simpset ss2 ctxt addsimps ths)
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   135
in
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51641
diff changeset
   136
  Attrib.thms >> (fn ths => fn ctxt => SIMPLE_METHOD' (vector_arith_tac ctxt ths))
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   137
end
42814
5af15f1e2ef6 simplified/unified method_setup/attribute_setup;
wenzelm
parents: 40786
diff changeset
   138
*} "lift trivial vector statements to real arith statements"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   139
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   140
lemma vec_0[simp]: "vec 0 = 0" by (vector zero_vec_def)
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   141
lemma vec_1[simp]: "vec 1 = 1" by (vector one_vec_def)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   142
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   143
lemma vec_inj[simp]: "vec x = vec y \<longleftrightarrow> x = y" by vector
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   144
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   145
lemma vec_in_image_vec: "vec x \<in> (vec ` S) \<longleftrightarrow> x \<in> S" by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   146
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   147
lemma vec_add: "vec(x + y) = vec x + vec y"  by (vector vec_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   148
lemma vec_sub: "vec(x - y) = vec x - vec y" by (vector vec_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   149
lemma vec_cmul: "vec(c * x) = c *s vec x " by (vector vec_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   150
lemma vec_neg: "vec(- x) = - vec x " by (vector vec_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   151
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   152
lemma vec_setsum:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   153
  assumes "finite S"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   154
  shows "vec(setsum f S) = setsum (vec o f) S"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   155
  using assms
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   156
proof induct
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   157
  case empty
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   158
  then show ?case by simp
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   159
next
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   160
  case insert
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   161
  then show ?case by (auto simp add: vec_add)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   162
qed
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   163
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   164
text{* Obvious "component-pushing". *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   165
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   166
lemma vec_component [simp]: "vec x $ i = x"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   167
  by (vector vec_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   168
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   169
lemma vector_mult_component [simp]: "(x * y)$i = x$i * y$i"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   170
  by vector
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   171
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   172
lemma vector_smult_component [simp]: "(c *s y)$i = c * (y$i)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   173
  by vector
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   174
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   175
lemma cond_component: "(if b then x else y)$i = (if b then x$i else y$i)" by vector
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   176
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   177
lemmas vector_component =
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   178
  vec_component vector_add_component vector_mult_component
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   179
  vector_smult_component vector_minus_component vector_uminus_component
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   180
  vector_scaleR_component cond_component
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   181
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   182
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   183
subsection {* Some frequently useful arithmetic lemmas over vectors. *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   184
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   185
instance vec :: (semigroup_mult, finite) semigroup_mult
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   186
  by default (vector mult_assoc)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   187
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   188
instance vec :: (monoid_mult, finite) monoid_mult
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   189
  by default vector+
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   190
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   191
instance vec :: (ab_semigroup_mult, finite) ab_semigroup_mult
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   192
  by default (vector mult_commute)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   193
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   194
instance vec :: (comm_monoid_mult, finite) comm_monoid_mult
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   195
  by default vector
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   196
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   197
instance vec :: (semiring, finite) semiring
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   198
  by default (vector field_simps)+
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   199
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   200
instance vec :: (semiring_0, finite) semiring_0
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   201
  by default (vector field_simps)+
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   202
instance vec :: (semiring_1, finite) semiring_1
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   203
  by default vector
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   204
instance vec :: (comm_semiring, finite) comm_semiring
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   205
  by default (vector field_simps)+
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   206
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   207
instance vec :: (comm_semiring_0, finite) comm_semiring_0 ..
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   208
instance vec :: (cancel_comm_monoid_add, finite) cancel_comm_monoid_add ..
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   209
instance vec :: (semiring_0_cancel, finite) semiring_0_cancel ..
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   210
instance vec :: (comm_semiring_0_cancel, finite) comm_semiring_0_cancel ..
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   211
instance vec :: (ring, finite) ring ..
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   212
instance vec :: (semiring_1_cancel, finite) semiring_1_cancel ..
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   213
instance vec :: (comm_semiring_1, finite) comm_semiring_1 ..
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   214
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   215
instance vec :: (ring_1, finite) ring_1 ..
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   216
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   217
instance vec :: (real_algebra, finite) real_algebra
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   218
  by default (simp_all add: vec_eq_iff)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   219
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   220
instance vec :: (real_algebra_1, finite) real_algebra_1 ..
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   221
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   222
lemma of_nat_index: "(of_nat n :: 'a::semiring_1 ^'n)$i = of_nat n"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   223
proof (induct n)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   224
  case 0
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   225
  then show ?case by vector
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   226
next
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   227
  case Suc
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   228
  then show ?case by vector
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   229
qed
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   230
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   231
lemma one_index[simp]: "(1 :: 'a::one ^'n)$i = 1"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   232
  by vector
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   233
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   234
instance vec :: (semiring_char_0, finite) semiring_char_0
38621
d6cb7e625d75 more concise characterization of of_nat operation and class semiring_char_0
haftmann
parents: 37678
diff changeset
   235
proof
d6cb7e625d75 more concise characterization of of_nat operation and class semiring_char_0
haftmann
parents: 37678
diff changeset
   236
  fix m n :: nat
d6cb7e625d75 more concise characterization of of_nat operation and class semiring_char_0
haftmann
parents: 37678
diff changeset
   237
  show "inj (of_nat :: nat \<Rightarrow> 'a ^ 'b)"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   238
    by (auto intro!: injI simp add: vec_eq_iff of_nat_index)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   239
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   240
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45031
diff changeset
   241
instance vec :: (numeral, finite) numeral ..
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45031
diff changeset
   242
instance vec :: (semiring_numeral, finite) semiring_numeral ..
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45031
diff changeset
   243
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45031
diff changeset
   244
lemma numeral_index [simp]: "numeral w $ i = numeral w"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   245
  by (induct w) (simp_all only: numeral.simps vector_add_component one_index)
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45031
diff changeset
   246
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45031
diff changeset
   247
lemma neg_numeral_index [simp]: "neg_numeral w $ i = neg_numeral w"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45031
diff changeset
   248
  by (simp only: neg_numeral_def vector_uminus_component numeral_index)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45031
diff changeset
   249
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   250
instance vec :: (comm_ring_1, finite) comm_ring_1 ..
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   251
instance vec :: (ring_char_0, finite) ring_char_0 ..
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   252
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   253
lemma vector_smult_assoc: "a *s (b *s x) = ((a::'a::semigroup_mult) * b) *s x"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   254
  by (vector mult_assoc)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   255
lemma vector_sadd_rdistrib: "((a::'a::semiring) + b) *s x = a *s x + b *s x"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   256
  by (vector field_simps)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   257
lemma vector_add_ldistrib: "(c::'a::semiring) *s (x + y) = c *s x + c *s y"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   258
  by (vector field_simps)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   259
lemma vector_smult_lzero[simp]: "(0::'a::mult_zero) *s x = 0" by vector
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   260
lemma vector_smult_lid[simp]: "(1::'a::monoid_mult) *s x = x" by vector
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   261
lemma vector_ssub_ldistrib: "(c::'a::ring) *s (x - y) = c *s x - c *s y"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   262
  by (vector field_simps)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   263
lemma vector_smult_rneg: "(c::'a::ring) *s -x = -(c *s x)" by vector
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   264
lemma vector_smult_lneg: "- (c::'a::ring) *s x = -(c *s x)" by vector
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45031
diff changeset
   265
lemma vector_sneg_minus1: "-x = (-1::'a::ring_1) *s x" by vector
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   266
lemma vector_smult_rzero[simp]: "c *s 0 = (0::'a::mult_zero ^ 'n)" by vector
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   267
lemma vector_sub_rdistrib: "((a::'a::ring) - b) *s x = a *s x - b *s x"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   268
  by (vector field_simps)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   269
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   270
lemma vec_eq[simp]: "(vec m = vec n) \<longleftrightarrow> (m = n)"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   271
  by (simp add: vec_eq_iff)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   272
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   273
lemma norm_eq_0_imp: "norm x = 0 ==> x = (0::real ^'n)" by (metis norm_eq_zero)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   274
lemma vector_mul_eq_0[simp]: "(a *s x = 0) \<longleftrightarrow> a = (0::'a::idom) \<or> x = 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   275
  by vector
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   276
lemma vector_mul_lcancel[simp]: "a *s x = a *s y \<longleftrightarrow> a = (0::real) \<or> x = y"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   277
  by (metis eq_iff_diff_eq_0 vector_mul_eq_0 vector_ssub_ldistrib)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   278
lemma vector_mul_rcancel[simp]: "a *s x = b *s x \<longleftrightarrow> (a::real) = b \<or> x = 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   279
  by (metis eq_iff_diff_eq_0 vector_mul_eq_0 vector_sub_rdistrib)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   280
lemma vector_mul_lcancel_imp: "a \<noteq> (0::real) ==>  a *s x = a *s y ==> (x = y)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   281
  by (metis vector_mul_lcancel)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   282
lemma vector_mul_rcancel_imp: "x \<noteq> 0 \<Longrightarrow> (a::real) *s x = b *s x ==> a = b"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   283
  by (metis vector_mul_rcancel)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   284
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   285
lemma component_le_norm_cart: "\<bar>x$i\<bar> <= norm x"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   286
  apply (simp add: norm_vec_def)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   287
  apply (rule member_le_setL2, simp_all)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   288
  done
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   289
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   290
lemma norm_bound_component_le_cart: "norm x <= e ==> \<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:
diff changeset
   291
  by (metis component_le_norm_cart order_trans)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   292
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   293
lemma norm_bound_component_lt_cart: "norm x < e ==> \<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:
diff changeset
   294
  by (metis component_le_norm_cart basic_trans_rules(21))
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   295
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   296
lemma norm_le_l1_cart: "norm x <= setsum(\<lambda>i. \<bar>x$i\<bar>) UNIV"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   297
  by (simp add: norm_vec_def setL2_le_setsum)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   298
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   299
lemma scalar_mult_eq_scaleR: "c *s x = c *\<^sub>R x"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   300
  unfolding scaleR_vec_def vector_scalar_mult_def by simp
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   301
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   302
lemma dist_mul[simp]: "dist (c *s x) (c *s y) = \<bar>c\<bar> * dist x y"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   303
  unfolding dist_norm scalar_mult_eq_scaleR
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   304
  unfolding scaleR_right_diff_distrib[symmetric] by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   305
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   306
lemma setsum_component [simp]:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   307
  fixes f:: " 'a \<Rightarrow> ('b::comm_monoid_add) ^'n"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   308
  shows "(setsum f S)$i = setsum (\<lambda>x. (f x)$i) S"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   309
proof (cases "finite S")
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   310
  case True
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   311
  then show ?thesis by induct simp_all
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   312
next
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   313
  case False
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   314
  then show ?thesis by simp
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   315
qed
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   316
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   317
lemma setsum_eq: "setsum f S = (\<chi> i. setsum (\<lambda>x. (f x)$i ) S)"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   318
  by (simp add: vec_eq_iff)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   319
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   320
lemma setsum_cmul:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   321
  fixes f:: "'c \<Rightarrow> ('a::semiring_1)^'n"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   322
  shows "setsum (\<lambda>x. c *s f x) S = c *s setsum f S"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   323
  by (simp add: vec_eq_iff setsum_right_distrib)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   324
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   325
(* TODO: use setsum_norm_allsubsets_bound *)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   326
lemma setsum_norm_allsubsets_bound_cart:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   327
  fixes f:: "'a \<Rightarrow> real ^'n"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   328
  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:
diff changeset
   329
  shows "setsum (\<lambda>x. norm (f x)) P \<le> 2 * real CARD('n) *  e"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   330
  using setsum_norm_allsubsets_bound[OF assms]
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   331
  by (simp add: DIM_cart Basis_real_def)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   332
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   333
instance vec :: (ordered_euclidean_space, finite) ordered_euclidean_space
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   334
proof
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   335
  fix x y::"'a^'b"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   336
  show "(x \<le> y) = (\<forall>i\<in>Basis. x \<bullet> i \<le> y \<bullet> i)"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   337
    unfolding less_eq_vec_def apply(subst eucl_le) by (simp add: Basis_vec_def inner_axis)
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   338
  show"(x < y) = (\<forall>i\<in>Basis. x \<bullet> i < y \<bullet> i)"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   339
    unfolding less_vec_def apply(subst eucl_less) by (simp add: Basis_vec_def inner_axis)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   340
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   341
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   342
subsection {* Matrix operations *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   343
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   344
text{* Matrix notation. NB: an MxN matrix is of type @{typ "'a^'n^'m"}, not @{typ "'a^'m^'n"} *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   345
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   346
definition matrix_matrix_mult :: "('a::semiring_1) ^'n^'m \<Rightarrow> 'a ^'p^'n \<Rightarrow> 'a ^ 'p ^'m"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   347
    (infixl "**" 70)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   348
  where "m ** m' == (\<chi> i j. setsum (\<lambda>k. ((m$i)$k) * ((m'$k)$j)) (UNIV :: 'n set)) ::'a ^ 'p ^'m"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   349
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   350
definition matrix_vector_mult :: "('a::semiring_1) ^'n^'m \<Rightarrow> 'a ^'n \<Rightarrow> 'a ^ 'm"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   351
    (infixl "*v" 70)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   352
  where "m *v x \<equiv> (\<chi> i. setsum (\<lambda>j. ((m$i)$j) * (x$j)) (UNIV ::'n set)) :: 'a^'m"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   353
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   354
definition vector_matrix_mult :: "'a ^ 'm \<Rightarrow> ('a::semiring_1) ^'n^'m \<Rightarrow> 'a ^'n "
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   355
    (infixl "v*" 70)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   356
  where "v v* m == (\<chi> j. setsum (\<lambda>i. ((m$i)$j) * (v$i)) (UNIV :: 'm set)) :: 'a^'n"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   357
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   358
definition "(mat::'a::zero => 'a ^'n^'n) k = (\<chi> i j. if i = j then k else 0)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   359
definition transpose where 
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   360
  "(transpose::'a^'n^'m \<Rightarrow> 'a^'m^'n) A = (\<chi> i j. ((A$j)$i))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   361
definition "(row::'m => 'a ^'n^'m \<Rightarrow> 'a ^'n) i A = (\<chi> j. ((A$i)$j))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   362
definition "(column::'n =>'a^'n^'m =>'a^'m) j A = (\<chi> i. ((A$i)$j))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   363
definition "rows(A::'a^'n^'m) = { row i A | i. i \<in> (UNIV :: 'm set)}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   364
definition "columns(A::'a^'n^'m) = { column i A | i. i \<in> (UNIV :: 'n set)}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   365
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   366
lemma mat_0[simp]: "mat 0 = 0" by (vector mat_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   367
lemma matrix_add_ldistrib: "(A ** (B + C)) = (A ** B) + (A ** C)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   368
  by (vector matrix_matrix_mult_def setsum_addf[symmetric] field_simps)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   369
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   370
lemma matrix_mul_lid:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   371
  fixes A :: "'a::semiring_1 ^ 'm ^ 'n"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   372
  shows "mat 1 ** A = A"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   373
  apply (simp add: matrix_matrix_mult_def mat_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   374
  apply vector
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   375
  apply (auto simp only: if_distrib cond_application_beta setsum_delta'[OF finite]
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   376
    mult_1_left mult_zero_left if_True UNIV_I)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   377
  done
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   378
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   379
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   380
lemma matrix_mul_rid:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   381
  fixes A :: "'a::semiring_1 ^ 'm ^ 'n"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   382
  shows "A ** mat 1 = A"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   383
  apply (simp add: matrix_matrix_mult_def mat_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   384
  apply vector
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   385
  apply (auto simp only: if_distrib cond_application_beta setsum_delta[OF finite]
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   386
    mult_1_right mult_zero_right if_True UNIV_I cong: if_cong)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   387
  done
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   388
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   389
lemma matrix_mul_assoc: "A ** (B ** C) = (A ** B) ** C"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   390
  apply (vector matrix_matrix_mult_def setsum_right_distrib setsum_left_distrib mult_assoc)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   391
  apply (subst setsum_commute)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   392
  apply simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   393
  done
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   394
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   395
lemma matrix_vector_mul_assoc: "A *v (B *v x) = (A ** B) *v x"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   396
  apply (vector matrix_matrix_mult_def matrix_vector_mult_def
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   397
    setsum_right_distrib setsum_left_distrib mult_assoc)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   398
  apply (subst setsum_commute)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   399
  apply simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   400
  done
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   401
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   402
lemma matrix_vector_mul_lid: "mat 1 *v x = (x::'a::semiring_1 ^ 'n)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   403
  apply (vector matrix_vector_mult_def mat_def)
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   404
  apply (simp add: if_distrib cond_application_beta setsum_delta' cong del: if_weak_cong)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   405
  done
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   406
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   407
lemma matrix_transpose_mul:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   408
    "transpose(A ** B) = transpose B ** transpose (A::'a::comm_semiring_1^_^_)"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   409
  by (simp add: matrix_matrix_mult_def transpose_def vec_eq_iff mult_commute)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   410
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   411
lemma matrix_eq:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   412
  fixes A B :: "'a::semiring_1 ^ 'n ^ 'm"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   413
  shows "A = B \<longleftrightarrow>  (\<forall>x. A *v x = B *v x)" (is "?lhs \<longleftrightarrow> ?rhs")
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   414
  apply auto
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   415
  apply (subst vec_eq_iff)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   416
  apply clarify
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   417
  apply (clarsimp simp add: matrix_vector_mult_def if_distrib cond_application_beta vec_eq_iff cong del: if_weak_cong)
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   418
  apply (erule_tac x="axis ia 1" in allE)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   419
  apply (erule_tac x="i" in allE)
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   420
  apply (auto simp add: if_distrib cond_application_beta axis_def
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   421
    setsum_delta[OF finite] cong del: if_weak_cong)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   422
  done
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   423
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   424
lemma matrix_vector_mul_component: "((A::real^_^_) *v x)$k = (A$k) \<bullet> x"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   425
  by (simp add: matrix_vector_mult_def inner_vec_def)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   426
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   427
lemma dot_lmul_matrix: "((x::real ^_) v* A) \<bullet> y = x \<bullet> (A *v y)"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   428
  apply (simp add: inner_vec_def matrix_vector_mult_def vector_matrix_mult_def setsum_left_distrib setsum_right_distrib mult_ac)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   429
  apply (subst setsum_commute)
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   430
  apply simp
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   431
  done
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   432
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   433
lemma transpose_mat: "transpose (mat n) = mat n"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   434
  by (vector transpose_def mat_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   435
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   436
lemma transpose_transpose: "transpose(transpose A) = A"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   437
  by (vector transpose_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   438
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   439
lemma row_transpose:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   440
  fixes A:: "'a::semiring_1^_^_"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   441
  shows "row i (transpose A) = column i A"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   442
  by (simp add: row_def column_def transpose_def vec_eq_iff)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   443
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   444
lemma column_transpose:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   445
  fixes A:: "'a::semiring_1^_^_"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   446
  shows "column i (transpose A) = row i A"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   447
  by (simp add: row_def column_def transpose_def vec_eq_iff)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   448
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   449
lemma rows_transpose: "rows(transpose (A::'a::semiring_1^_^_)) = columns A"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   450
  by (auto simp add: rows_def columns_def row_transpose intro: set_eqI)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   451
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   452
lemma columns_transpose: "columns(transpose (A::'a::semiring_1^_^_)) = rows A"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   453
  by (metis transpose_transpose rows_transpose)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   454
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   455
text{* Two sometimes fruitful ways of looking at matrix-vector multiplication. *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   456
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   457
lemma matrix_mult_dot: "A *v x = (\<chi> i. A$i \<bullet> x)"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   458
  by (simp add: matrix_vector_mult_def inner_vec_def)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   459
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   460
lemma matrix_mult_vsum:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   461
  "(A::'a::comm_semiring_1^'n^'m) *v x = setsum (\<lambda>i. (x$i) *s column i A) (UNIV:: 'n set)"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   462
  by (simp add: matrix_vector_mult_def vec_eq_iff column_def mult_commute)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   463
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   464
lemma vector_componentwise:
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   465
  "(x::'a::ring_1^'n) = (\<chi> j. \<Sum>i\<in>UNIV. (x$i) * (axis i 1 :: 'a^'n) $ j)"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   466
  by (simp add: axis_def if_distrib setsum_cases vec_eq_iff)
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   467
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   468
lemma basis_expansion: "setsum (\<lambda>i. (x$i) *s axis i 1) UNIV = (x::('a::ring_1) ^'n)"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   469
  by (auto simp add: axis_def vec_eq_iff if_distrib setsum_cases cong del: if_weak_cong)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   470
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   471
lemma linear_componentwise:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   472
  fixes f:: "real ^'m \<Rightarrow> real ^ _"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   473
  assumes lf: "linear f"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   474
  shows "(f x)$j = setsum (\<lambda>i. (x$i) * (f (axis i 1)$j)) (UNIV :: 'm set)" (is "?lhs = ?rhs")
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   475
proof -
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   476
  let ?M = "(UNIV :: 'm set)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   477
  let ?N = "(UNIV :: 'n set)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   478
  have fM: "finite ?M" by simp
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   479
  have "?rhs = (setsum (\<lambda>i.(x$i) *\<^sub>R f (axis i 1) ) ?M)$j"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   480
    unfolding setsum_component by simp
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   481
  then show ?thesis
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   482
    unfolding linear_setsum_mul[OF lf fM, symmetric]
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   483
    unfolding scalar_mult_eq_scaleR[symmetric]
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   484
    unfolding basis_expansion
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   485
    by simp
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   486
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   487
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   488
text{* Inverse matrices  (not necessarily square) *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   489
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   490
definition
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   491
  "invertible(A::'a::semiring_1^'n^'m) \<longleftrightarrow> (\<exists>A'::'a^'m^'n. A ** A' = mat 1 \<and> A' ** A = mat 1)"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   492
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   493
definition
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   494
  "matrix_inv(A:: 'a::semiring_1^'n^'m) =
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   495
    (SOME A'::'a^'m^'n. A ** A' = mat 1 \<and> A' ** A = mat 1)"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   496
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   497
text{* Correspondence between matrices and linear operators. *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   498
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   499
definition matrix :: "('a::{plus,times, one, zero}^'m \<Rightarrow> 'a ^ 'n) \<Rightarrow> 'a^'m^'n"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   500
  where "matrix f = (\<chi> i j. (f(axis j 1))$i)"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   501
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   502
lemma matrix_vector_mul_linear: "linear(\<lambda>x. A *v (x::real ^ _))"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   503
  by (simp add: linear_def matrix_vector_mult_def vec_eq_iff
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   504
      field_simps setsum_right_distrib setsum_addf)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   505
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   506
lemma matrix_works:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   507
  assumes lf: "linear f"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   508
  shows "matrix f *v x = f (x::real ^ 'n)"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   509
  apply (simp add: matrix_def matrix_vector_mult_def vec_eq_iff mult_commute)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   510
  apply clarify
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   511
  apply (rule linear_componentwise[OF lf, symmetric])
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   512
  done
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   513
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   514
lemma matrix_vector_mul: "linear f ==> f = (\<lambda>x. matrix f *v (x::real ^ 'n))"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   515
  by (simp add: ext matrix_works)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   516
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   517
lemma matrix_of_matrix_vector_mul: "matrix(\<lambda>x. A *v (x :: real ^ 'n)) = A"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   518
  by (simp add: matrix_eq matrix_vector_mul_linear matrix_works)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   519
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   520
lemma matrix_compose:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   521
  assumes lf: "linear (f::real^'n \<Rightarrow> real^'m)"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   522
    and lg: "linear (g::real^'m \<Rightarrow> real^_)"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   523
  shows "matrix (g o f) = matrix g ** matrix f"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   524
  using lf lg linear_compose[OF lf lg] matrix_works[OF linear_compose[OF lf lg]]
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   525
  by (simp add: matrix_eq matrix_works matrix_vector_mul_assoc[symmetric] o_def)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   526
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   527
lemma matrix_vector_column:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   528
  "(A::'a::comm_semiring_1^'n^_) *v x = setsum (\<lambda>i. (x$i) *s ((transpose A)$i)) (UNIV:: 'n set)"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   529
  by (simp add: matrix_vector_mult_def transpose_def vec_eq_iff mult_commute)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   530
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   531
lemma adjoint_matrix: "adjoint(\<lambda>x. (A::real^'n^'m) *v x) = (\<lambda>x. transpose A *v x)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   532
  apply (rule adjoint_unique)
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   533
  apply (simp add: transpose_def inner_vec_def matrix_vector_mult_def
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   534
    setsum_left_distrib setsum_right_distrib)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   535
  apply (subst setsum_commute)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   536
  apply (auto simp add: mult_ac)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   537
  done
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   538
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   539
lemma matrix_adjoint: assumes lf: "linear (f :: real^'n \<Rightarrow> real ^'m)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   540
  shows "matrix(adjoint f) = transpose(matrix f)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   541
  apply (subst matrix_vector_mul[OF lf])
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   542
  unfolding adjoint_matrix matrix_of_matrix_vector_mul
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   543
  apply rule
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   544
  done
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   545
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   546
44360
ea609ebdeebf section -> subsection
huffman
parents: 44282
diff changeset
   547
subsection {* lambda skolemization on cartesian products *}
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   548
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   549
(* FIXME: rename do choice_cart *)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   550
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   551
lemma lambda_skolem: "(\<forall>i. \<exists>x. P i x) \<longleftrightarrow>
37494
6e9f48cf6adf Make latex happy
hoelzl
parents: 37489
diff changeset
   552
   (\<exists>x::'a ^ 'n. \<forall>i. P i (x $ i))" (is "?lhs \<longleftrightarrow> ?rhs")
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   553
proof -
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   554
  let ?S = "(UNIV :: 'n set)"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   555
  { assume H: "?rhs"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   556
    then have ?lhs by auto }
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   557
  moreover
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   558
  { assume H: "?lhs"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   559
    then obtain f where f:"\<forall>i. 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:
diff changeset
   560
    let ?x = "(\<chi> i. (f i)) :: 'a ^ 'n"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   561
    { fix i
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   562
      from f have "P i (f i)" by metis
37494
6e9f48cf6adf Make latex happy
hoelzl
parents: 37489
diff changeset
   563
      then have "P i (?x $ i)" by auto
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   564
    }
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   565
    hence "\<forall>i. 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:
diff changeset
   566
    hence ?rhs by metis }
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   567
  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:
diff changeset
   568
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   569
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   570
lemma vector_sub_project_orthogonal_cart: "(b::real^'n) \<bullet> (x - ((b \<bullet> x) / (b \<bullet> b)) *s b) = 0"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   571
  unfolding inner_simps scalar_mult_eq_scaleR by auto
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   572
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   573
lemma left_invertible_transpose:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   574
  "(\<exists>(B). B ** transpose (A) = mat (1::'a::comm_semiring_1)) \<longleftrightarrow> (\<exists>(B). A ** B = mat 1)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   575
  by (metis matrix_transpose_mul transpose_mat transpose_transpose)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   576
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   577
lemma right_invertible_transpose:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   578
  "(\<exists>(B). transpose (A) ** B = mat (1::'a::comm_semiring_1)) \<longleftrightarrow> (\<exists>(B). B ** A = mat 1)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   579
  by (metis matrix_transpose_mul transpose_mat transpose_transpose)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   580
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   581
lemma matrix_left_invertible_injective:
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   582
  "(\<exists>B. (B::real^'m^'n) ** (A::real^'n^'m) = mat 1) \<longleftrightarrow> (\<forall>x y. A *v x = A *v y \<longrightarrow> x = y)"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   583
proof -
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   584
  { fix B:: "real^'m^'n" and x y assume B: "B ** A = mat 1" and xy: "A *v x = A*v y"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   585
    from xy have "B*v (A *v x) = B *v (A*v y)" by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   586
    hence "x = y"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   587
      unfolding matrix_vector_mul_assoc B matrix_vector_mul_lid . }
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   588
  moreover
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   589
  { assume A: "\<forall>x y. A *v x = A *v y \<longrightarrow> x = y"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   590
    hence i: "inj (op *v A)" unfolding inj_on_def by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   591
    from linear_injective_left_inverse[OF matrix_vector_mul_linear i]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   592
    obtain g where g: "linear g" "g o op *v A = id" by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   593
    have "matrix g ** A = mat 1"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   594
      unfolding matrix_eq matrix_vector_mul_lid matrix_vector_mul_assoc[symmetric] matrix_works[OF g(1)]
44165
d26a45f3c835 remove lemma stupid_ext
huffman
parents: 44140
diff changeset
   595
      using g(2) by (simp add: fun_eq_iff)
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   596
    then have "\<exists>B. (B::real ^'m^'n) ** A = mat 1" by blast }
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   597
  ultimately show ?thesis by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   598
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   599
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   600
lemma matrix_left_invertible_ker:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   601
  "(\<exists>B. (B::real ^'m^'n) ** (A::real^'n^'m) = mat 1) \<longleftrightarrow> (\<forall>x. A *v x = 0 \<longrightarrow> x = 0)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   602
  unfolding matrix_left_invertible_injective
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   603
  using linear_injective_0[OF matrix_vector_mul_linear, of A]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   604
  by (simp add: inj_on_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   605
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   606
lemma matrix_right_invertible_surjective:
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   607
  "(\<exists>B. (A::real^'n^'m) ** (B::real^'m^'n) = mat 1) \<longleftrightarrow> surj (\<lambda>x. A *v x)"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   608
proof -
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   609
  { fix B :: "real ^'m^'n"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   610
    assume AB: "A ** B = mat 1"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   611
    { fix x :: "real ^ 'm"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   612
      have "A *v (B *v x) = x"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   613
        by (simp add: matrix_vector_mul_lid matrix_vector_mul_assoc AB) }
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   614
    hence "surj (op *v A)" unfolding surj_def by metis }
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   615
  moreover
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   616
  { assume sf: "surj (op *v A)"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   617
    from linear_surjective_right_inverse[OF matrix_vector_mul_linear sf]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   618
    obtain g:: "real ^'m \<Rightarrow> real ^'n" where g: "linear g" "op *v A o g = id"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   619
      by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   620
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   621
    have "A ** (matrix g) = mat 1"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   622
      unfolding matrix_eq  matrix_vector_mul_lid
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   623
        matrix_vector_mul_assoc[symmetric] matrix_works[OF g(1)]
44165
d26a45f3c835 remove lemma stupid_ext
huffman
parents: 44140
diff changeset
   624
      using g(2) unfolding o_def fun_eq_iff id_def
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   625
      .
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   626
    hence "\<exists>B. A ** (B::real^'m^'n) = mat 1" by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   627
  }
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   628
  ultimately show ?thesis unfolding surj_def by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   629
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   630
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   631
lemma matrix_left_invertible_independent_columns:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   632
  fixes A :: "real^'n^'m"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   633
  shows "(\<exists>(B::real ^'m^'n). B ** A = mat 1) \<longleftrightarrow>
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   634
      (\<forall>c. setsum (\<lambda>i. c i *s column i A) (UNIV :: 'n set) = 0 \<longrightarrow> (\<forall>i. c i = 0))"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   635
    (is "?lhs \<longleftrightarrow> ?rhs")
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   636
proof -
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   637
  let ?U = "UNIV :: 'n set"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   638
  { assume k: "\<forall>x. A *v x = 0 \<longrightarrow> x = 0"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   639
    { fix c i
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   640
      assume c: "setsum (\<lambda>i. c i *s column i A) ?U = 0" and i: "i \<in> ?U"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   641
      let ?x = "\<chi> i. c i"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   642
      have th0:"A *v ?x = 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   643
        using c
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   644
        unfolding matrix_mult_vsum vec_eq_iff
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   645
        by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   646
      from k[rule_format, OF th0] i
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   647
      have "c i = 0" by (vector vec_eq_iff)}
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   648
    hence ?rhs by blast }
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   649
  moreover
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   650
  { assume H: ?rhs
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   651
    { fix x assume x: "A *v x = 0"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   652
      let ?c = "\<lambda>i. ((x$i ):: real)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   653
      from H[rule_format, of ?c, unfolded matrix_mult_vsum[symmetric], OF x]
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   654
      have "x = 0" by vector }
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   655
  }
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   656
  ultimately show ?thesis unfolding matrix_left_invertible_ker by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   657
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   658
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   659
lemma matrix_right_invertible_independent_rows:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   660
  fixes A :: "real^'n^'m"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   661
  shows "(\<exists>(B::real^'m^'n). A ** B = mat 1) \<longleftrightarrow>
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   662
    (\<forall>c. setsum (\<lambda>i. c i *s row i A) (UNIV :: 'm set) = 0 \<longrightarrow> (\<forall>i. c i = 0))"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   663
  unfolding left_invertible_transpose[symmetric]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   664
    matrix_left_invertible_independent_columns
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   665
  by (simp add: column_transpose)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   666
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   667
lemma matrix_right_invertible_span_columns:
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   668
  "(\<exists>(B::real ^'n^'m). (A::real ^'m^'n) ** B = mat 1) \<longleftrightarrow>
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   669
    span (columns A) = UNIV" (is "?lhs = ?rhs")
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   670
proof -
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   671
  let ?U = "UNIV :: 'm set"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   672
  have fU: "finite ?U" by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   673
  have lhseq: "?lhs \<longleftrightarrow> (\<forall>y. \<exists>(x::real^'m). setsum (\<lambda>i. (x$i) *s column i A) ?U = y)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   674
    unfolding matrix_right_invertible_surjective matrix_mult_vsum surj_def
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   675
    apply (subst eq_commute)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   676
    apply rule
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   677
    done
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   678
  have rhseq: "?rhs \<longleftrightarrow> (\<forall>x. x \<in> span (columns A))" by blast
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   679
  { assume h: ?lhs
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   680
    { fix x:: "real ^'n"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   681
      from h[unfolded lhseq, rule_format, of x] obtain y :: "real ^'m"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   682
        where y: "setsum (\<lambda>i. (y$i) *s column i A) ?U = x" by blast
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   683
      have "x \<in> span (columns A)"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   684
        unfolding y[symmetric]
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   685
        apply (rule span_setsum[OF fU])
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   686
        apply clarify
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   687
        unfolding scalar_mult_eq_scaleR
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   688
        apply (rule span_mul)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   689
        apply (rule span_superset)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   690
        unfolding columns_def
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   691
        apply blast
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   692
        done
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   693
    }
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   694
    then have ?rhs unfolding rhseq by blast }
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   695
  moreover
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   696
  { assume h:?rhs
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   697
    let ?P = "\<lambda>(y::real ^'n). \<exists>(x::real^'m). setsum (\<lambda>i. (x$i) *s column i A) ?U = y"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   698
    { fix y
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   699
      have "?P y"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   700
      proof (rule span_induct_alt[of ?P "columns A", folded scalar_mult_eq_scaleR])
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   701
        show "\<exists>x\<Colon>real ^ 'm. setsum (\<lambda>i. (x$i) *s column i A) ?U = 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   702
          by (rule exI[where x=0], simp)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   703
      next
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   704
        fix c y1 y2
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   705
        assume y1: "y1 \<in> columns A" and y2: "?P y2"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   706
        from y1 obtain i where i: "i \<in> ?U" "y1 = column i A"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   707
          unfolding columns_def by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   708
        from y2 obtain x:: "real ^'m" where
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   709
          x: "setsum (\<lambda>i. (x$i) *s column i A) ?U = y2" by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   710
        let ?x = "(\<chi> j. if j = i then c + (x$i) else (x$j))::real^'m"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   711
        show "?P (c*s y1 + y2)"
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 49644
diff changeset
   712
        proof (rule exI[where x= "?x"], vector, auto simp add: i x[symmetric] if_distrib distrib_left cond_application_beta cong del: if_weak_cong)
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   713
          fix j
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   714
          have th: "\<forall>xa \<in> ?U. (if xa = i then (c + (x$i)) * ((column xa A)$j)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   715
              else (x$xa) * ((column xa A$j))) = (if xa = i then c * ((column i A)$j) else 0) + ((x$xa) * ((column xa A)$j))"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   716
            using i(1) by (simp add: field_simps)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   717
          have "setsum (\<lambda>xa. if xa = i then (c + (x$i)) * ((column xa A)$j)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   718
              else (x$xa) * ((column xa A$j))) ?U = setsum (\<lambda>xa. (if xa = i then c * ((column i A)$j) else 0) + ((x$xa) * ((column xa A)$j))) ?U"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   719
            apply (rule setsum_cong[OF refl])
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   720
            using th apply blast
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   721
            done
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   722
          also have "\<dots> = setsum (\<lambda>xa. if xa = i then c * ((column i A)$j) else 0) ?U + setsum (\<lambda>xa. ((x$xa) * ((column xa A)$j))) ?U"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   723
            by (simp add: setsum_addf)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   724
          also have "\<dots> = c * ((column i A)$j) + setsum (\<lambda>xa. ((x$xa) * ((column xa A)$j))) ?U"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   725
            unfolding setsum_delta[OF fU]
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   726
            using i(1) by simp
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   727
          finally show "setsum (\<lambda>xa. if xa = i then (c + (x$i)) * ((column xa A)$j)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   728
            else (x$xa) * ((column xa A$j))) ?U = c * ((column i A)$j) + setsum (\<lambda>xa. ((x$xa) * ((column xa A)$j))) ?U" .
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   729
        qed
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   730
      next
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   731
        show "y \<in> span (columns A)"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   732
          unfolding h by blast
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   733
      qed
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   734
    }
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   735
    then have ?lhs unfolding lhseq ..
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   736
  }
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   737
  ultimately show ?thesis by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   738
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   739
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   740
lemma matrix_left_invertible_span_rows:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   741
  "(\<exists>(B::real^'m^'n). B ** (A::real^'n^'m) = mat 1) \<longleftrightarrow> span (rows A) = UNIV"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   742
  unfolding right_invertible_transpose[symmetric]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   743
  unfolding columns_transpose[symmetric]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   744
  unfolding matrix_right_invertible_span_columns
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   745
  ..
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   746
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   747
text {* The same result in terms of square matrices. *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   748
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   749
lemma matrix_left_right_inverse:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   750
  fixes A A' :: "real ^'n^'n"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   751
  shows "A ** A' = mat 1 \<longleftrightarrow> A' ** A = mat 1"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   752
proof -
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   753
  { fix A A' :: "real ^'n^'n"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   754
    assume AA': "A ** A' = mat 1"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   755
    have sA: "surj (op *v A)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   756
      unfolding surj_def
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   757
      apply clarify
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   758
      apply (rule_tac x="(A' *v y)" in exI)
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   759
      apply (simp add: matrix_vector_mul_assoc AA' matrix_vector_mul_lid)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   760
      done
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   761
    from linear_surjective_isomorphism[OF matrix_vector_mul_linear sA]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   762
    obtain f' :: "real ^'n \<Rightarrow> real ^'n"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   763
      where f': "linear f'" "\<forall>x. f' (A *v x) = x" "\<forall>x. A *v f' x = x" by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   764
    have th: "matrix f' ** A = mat 1"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   765
      by (simp add: matrix_eq matrix_works[OF f'(1)]
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   766
          matrix_vector_mul_assoc[symmetric] matrix_vector_mul_lid f'(2)[rule_format])
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   767
    hence "(matrix f' ** A) ** A' = mat 1 ** A'" by simp
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   768
    hence "matrix f' = A'"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   769
      by (simp add: matrix_mul_assoc[symmetric] AA' matrix_mul_rid matrix_mul_lid)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   770
    hence "matrix f' ** A = A' ** A" by simp
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   771
    hence "A' ** A = mat 1" by (simp add: th)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   772
  }
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   773
  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:
diff changeset
   774
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   775
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   776
text {* Considering an n-element vector as an n-by-1 or 1-by-n matrix. *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   777
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   778
definition "rowvector v = (\<chi> i j. (v$j))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   779
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   780
definition "columnvector v = (\<chi> i j. (v$i))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   781
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   782
lemma transpose_columnvector: "transpose(columnvector v) = rowvector v"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   783
  by (simp add: transpose_def rowvector_def columnvector_def vec_eq_iff)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   784
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   785
lemma transpose_rowvector: "transpose(rowvector v) = columnvector v"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   786
  by (simp add: transpose_def columnvector_def rowvector_def vec_eq_iff)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   787
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   788
lemma dot_rowvector_columnvector: "columnvector (A *v v) = A ** columnvector v"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   789
  by (vector columnvector_def matrix_matrix_mult_def matrix_vector_mult_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   790
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   791
lemma dot_matrix_product:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   792
  "(x::real^'n) \<bullet> y = (((rowvector x ::real^'n^1) ** (columnvector y :: real^1^'n))$1)$1"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   793
  by (vector matrix_matrix_mult_def rowvector_def columnvector_def inner_vec_def)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   794
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   795
lemma dot_matrix_vector_mul:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   796
  fixes A B :: "real ^'n ^'n" and x y :: "real ^'n"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   797
  shows "(A *v x) \<bullet> (B *v y) =
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   798
      (((rowvector x :: real^'n^1) ** ((transpose A ** B) ** (columnvector y :: real ^1^'n)))$1)$1"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   799
  unfolding dot_matrix_product transpose_columnvector[symmetric]
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   800
    dot_rowvector_columnvector matrix_transpose_mul matrix_mul_assoc ..
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   801
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   802
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   803
lemma infnorm_cart:"infnorm (x::real^'n) = Sup {abs(x$i) |i. i\<in>UNIV}"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   804
  by (simp add: infnorm_def inner_axis Basis_vec_def) (metis (lifting) inner_axis real_inner_1_right)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   805
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   806
lemma component_le_infnorm_cart: "\<bar>x$i\<bar> \<le> infnorm (x::real^'n)"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   807
  using Basis_le_infnorm[of "axis i 1" x]
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
   808
  by (simp add: Basis_vec_def axis_eq_axis inner_axis)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   809
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   810
lemma continuous_component: "continuous F f \<Longrightarrow> continuous F (\<lambda>x. f x $ i)"
44647
e4de7750cdeb modernize lemmas about 'continuous' and 'continuous_on';
huffman
parents: 44571
diff changeset
   811
  unfolding continuous_def by (rule tendsto_vec_nth)
44213
6fb54701a11b add lemmas open_Collect_less, closed_Collect_le, closed_Collect_eq;
huffman
parents: 44211
diff changeset
   812
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   813
lemma continuous_on_component: "continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. f x $ i)"
44647
e4de7750cdeb modernize lemmas about 'continuous' and 'continuous_on';
huffman
parents: 44571
diff changeset
   814
  unfolding continuous_on_def by (fast intro: tendsto_vec_nth)
44213
6fb54701a11b add lemmas open_Collect_less, closed_Collect_le, closed_Collect_eq;
huffman
parents: 44211
diff changeset
   815
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   816
lemma closed_positive_orthant: "closed {x::real^'n. \<forall>i. 0 \<le>x$i}"
44233
aa74ce315bae add simp rules for isCont
huffman
parents: 44219
diff changeset
   817
  by (simp add: Collect_all_eq closed_INT closed_Collect_le)
44213
6fb54701a11b add lemmas open_Collect_less, closed_Collect_le, closed_Collect_eq;
huffman
parents: 44211
diff changeset
   818
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   819
lemma bounded_component_cart: "bounded s \<Longrightarrow> bounded ((\<lambda>x. x $ i) ` s)"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   820
  unfolding bounded_def
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   821
  apply clarify
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   822
  apply (rule_tac x="x $ i" in exI)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   823
  apply (rule_tac x="e" in exI)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   824
  apply clarify
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   825
  apply (rule order_trans [OF dist_vec_nth_le], simp)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   826
  done
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   827
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   828
lemma compact_lemma_cart:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   829
  fixes f :: "nat \<Rightarrow> 'a::heine_borel ^ 'n"
50998
501200635659 simplify heine_borel type class
hoelzl
parents: 50526
diff changeset
   830
  assumes f: "bounded (range f)"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   831
  shows "\<forall>d.
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   832
        \<exists>l r. subseq r \<and>
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   833
        (\<forall>e>0. eventually (\<lambda>n. \<forall>i\<in>d. dist (f (r n) $ i) (l $ i) < e) sequentially)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   834
proof
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   835
  fix d :: "'n set"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   836
  have "finite d" by simp
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   837
  thus "\<exists>l::'a ^ 'n. \<exists>r. subseq r \<and>
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   838
      (\<forall>e>0. eventually (\<lambda>n. \<forall>i\<in>d. dist (f (r n) $ i) (l $ i) < e) sequentially)"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   839
  proof (induct d)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   840
    case empty
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   841
    thus ?case unfolding subseq_def by auto
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   842
  next
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   843
    case (insert k d)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   844
    obtain l1::"'a^'n" and r1 where r1:"subseq r1"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   845
      and lr1:"\<forall>e>0. eventually (\<lambda>n. \<forall>i\<in>d. dist (f (r1 n) $ i) (l1 $ i) < e) sequentially"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   846
      using insert(3) by auto
50998
501200635659 simplify heine_borel type class
hoelzl
parents: 50526
diff changeset
   847
    have s': "bounded ((\<lambda>x. x $ k) ` range f)" using `bounded (range f)`
501200635659 simplify heine_borel type class
hoelzl
parents: 50526
diff changeset
   848
      by (auto intro!: bounded_component_cart)
501200635659 simplify heine_borel type class
hoelzl
parents: 50526
diff changeset
   849
    have f': "\<forall>n. f (r1 n) $ k \<in> (\<lambda>x. x $ k) ` range f" by simp
501200635659 simplify heine_borel type class
hoelzl
parents: 50526
diff changeset
   850
    have "bounded (range (\<lambda>i. f (r1 i) $ k))"
501200635659 simplify heine_borel type class
hoelzl
parents: 50526
diff changeset
   851
      by (metis (lifting) bounded_subset image_subsetI f' s')
501200635659 simplify heine_borel type class
hoelzl
parents: 50526
diff changeset
   852
    then obtain l2 r2 where r2: "subseq r2"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   853
      and lr2: "((\<lambda>i. f (r1 (r2 i)) $ k) ---> l2) sequentially"
50998
501200635659 simplify heine_borel type class
hoelzl
parents: 50526
diff changeset
   854
      using bounded_imp_convergent_subsequence[of "\<lambda>i. f (r1 i) $ k"] by (auto simp: o_def)
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   855
    def r \<equiv> "r1 \<circ> r2"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   856
    have r: "subseq r"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   857
      using r1 and r2 unfolding r_def o_def subseq_def by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   858
    moreover
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   859
    def l \<equiv> "(\<chi> i. if i = k then l2 else l1$i)::'a^'n"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   860
    { fix e :: real assume "e > 0"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   861
      from lr1 `e>0` have N1:"eventually (\<lambda>n. \<forall>i\<in>d. dist (f (r1 n) $ i) (l1 $ i) < e) sequentially"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   862
        by blast
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   863
      from lr2 `e>0` have N2:"eventually (\<lambda>n. dist (f (r1 (r2 n)) $ k) l2 < e) sequentially"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   864
        by (rule tendstoD)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   865
      from r2 N1 have N1': "eventually (\<lambda>n. \<forall>i\<in>d. dist (f (r1 (r2 n)) $ i) (l1 $ i) < e) sequentially"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   866
        by (rule eventually_subseq)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   867
      have "eventually (\<lambda>n. \<forall>i\<in>(insert k d). dist (f (r n) $ i) (l $ i) < e) sequentially"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   868
        using N1' N2 by (rule eventually_elim2, simp add: l_def r_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   869
    }
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   870
    ultimately show ?case by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   871
  qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   872
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   873
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   874
instance vec :: (heine_borel, finite) heine_borel
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   875
proof
50998
501200635659 simplify heine_borel type class
hoelzl
parents: 50526
diff changeset
   876
  fix f :: "nat \<Rightarrow> 'a ^ 'b"
501200635659 simplify heine_borel type class
hoelzl
parents: 50526
diff changeset
   877
  assume f: "bounded (range f)"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   878
  then obtain l r where r: "subseq r"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   879
      and l: "\<forall>e>0. eventually (\<lambda>n. \<forall>i\<in>UNIV. dist (f (r n) $ i) (l $ i) < e) sequentially"
50998
501200635659 simplify heine_borel type class
hoelzl
parents: 50526
diff changeset
   880
    using compact_lemma_cart [OF f] by blast
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   881
  let ?d = "UNIV::'b set"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   882
  { fix e::real assume "e>0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   883
    hence "0 < e / (real_of_nat (card ?d))"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   884
      using zero_less_card_finite divide_pos_pos[of e, of "real_of_nat (card ?d)"] by auto
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   885
    with l have "eventually (\<lambda>n. \<forall>i. dist (f (r n) $ i) (l $ i) < e / (real_of_nat (card ?d))) sequentially"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   886
      by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   887
    moreover
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   888
    { fix n
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   889
      assume n: "\<forall>i. dist (f (r n) $ i) (l $ i) < e / (real_of_nat (card ?d))"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   890
      have "dist (f (r n)) l \<le> (\<Sum>i\<in>?d. dist (f (r n) $ i) (l $ i))"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   891
        unfolding dist_vec_def using zero_le_dist by (rule setL2_le_setsum)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   892
      also have "\<dots> < (\<Sum>i\<in>?d. e / (real_of_nat (card ?d)))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   893
        by (rule setsum_strict_mono) (simp_all add: n)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   894
      finally have "dist (f (r n)) l < e" by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   895
    }
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   896
    ultimately have "eventually (\<lambda>n. dist (f (r n)) l < e) sequentially"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   897
      by (rule eventually_elim1)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   898
  }
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   899
  hence "((f \<circ> r) ---> l) sequentially" unfolding o_def tendsto_iff by simp
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   900
  with r show "\<exists>l r. subseq r \<and> ((f \<circ> r) ---> l) sequentially" by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   901
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   902
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   903
lemma interval_cart:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   904
  fixes a :: "'a::ord^'n"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   905
  shows "{a <..< b} = {x::'a^'n. \<forall>i. a$i < x$i \<and> x$i < b$i}"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   906
    and "{a .. b} = {x::'a^'n. \<forall>i. a$i \<le> x$i \<and> x$i \<le> b$i}"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   907
  by (auto simp add: set_eq_iff less_vec_def less_eq_vec_def)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   908
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   909
lemma mem_interval_cart:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   910
  fixes a :: "'a::ord^'n"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   911
  shows "x \<in> {a<..<b} \<longleftrightarrow> (\<forall>i. a$i < x$i \<and> x$i < b$i)"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   912
    and "x \<in> {a .. b} \<longleftrightarrow> (\<forall>i. a$i \<le> x$i \<and> x$i \<le> b$i)"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   913
  using interval_cart[of a b] by (auto simp add: set_eq_iff less_vec_def less_eq_vec_def)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   914
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   915
lemma interval_eq_empty_cart:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   916
  fixes a :: "real^'n"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   917
  shows "({a <..< b} = {} \<longleftrightarrow> (\<exists>i. b$i \<le> a$i))" (is ?th1)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   918
    and "({a  ..  b} = {} \<longleftrightarrow> (\<exists>i. b$i < a$i))" (is ?th2)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   919
proof -
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   920
  { fix i x assume as:"b$i \<le> a$i" and x:"x\<in>{a <..< b}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   921
    hence "a $ i < x $ i \<and> x $ i < b $ i" unfolding mem_interval_cart by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   922
    hence "a$i < b$i" by auto
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   923
    hence False using as by auto }
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   924
  moreover
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   925
  { assume as:"\<forall>i. \<not> (b$i \<le> a$i)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   926
    let ?x = "(1/2) *\<^sub>R (a + b)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   927
    { fix i
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   928
      have "a$i < b$i" using as[THEN spec[where x=i]] by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   929
      hence "a$i < ((1/2) *\<^sub>R (a+b)) $ i" "((1/2) *\<^sub>R (a+b)) $ i < b$i"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   930
        unfolding vector_smult_component and vector_add_component
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   931
        by auto }
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   932
    hence "{a <..< b} \<noteq> {}" using mem_interval_cart(1)[of "?x" a b] by auto }
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   933
  ultimately show ?th1 by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   934
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   935
  { fix i x assume as:"b$i < a$i" and x:"x\<in>{a .. b}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   936
    hence "a $ i \<le> x $ i \<and> x $ i \<le> b $ i" unfolding mem_interval_cart by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   937
    hence "a$i \<le> b$i" by auto
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   938
    hence False using as by auto }
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   939
  moreover
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   940
  { assume as:"\<forall>i. \<not> (b$i < a$i)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   941
    let ?x = "(1/2) *\<^sub>R (a + b)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   942
    { fix i
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   943
      have "a$i \<le> b$i" using as[THEN spec[where x=i]] by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   944
      hence "a$i \<le> ((1/2) *\<^sub>R (a+b)) $ i" "((1/2) *\<^sub>R (a+b)) $ i \<le> b$i"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   945
        unfolding vector_smult_component and vector_add_component
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   946
        by auto }
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   947
    hence "{a .. b} \<noteq> {}" using mem_interval_cart(2)[of "?x" a b] by auto  }
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   948
  ultimately show ?th2 by blast
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   949
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   950
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   951
lemma interval_ne_empty_cart:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   952
  fixes a :: "real^'n"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   953
  shows "{a  ..  b} \<noteq> {} \<longleftrightarrow> (\<forall>i. a$i \<le> b$i)"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   954
    and "{a <..< b} \<noteq> {} \<longleftrightarrow> (\<forall>i. a$i < b$i)"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   955
  unfolding interval_eq_empty_cart[of a b] by (auto simp add: not_less not_le)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   956
    (* BH: Why doesn't just "auto" work here? *)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   957
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   958
lemma subset_interval_imp_cart:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   959
  fixes a :: "real^'n"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   960
  shows "(\<forall>i. a$i \<le> c$i \<and> d$i \<le> b$i) \<Longrightarrow> {c .. d} \<subseteq> {a .. b}"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   961
    and "(\<forall>i. a$i < c$i \<and> d$i < b$i) \<Longrightarrow> {c .. d} \<subseteq> {a<..<b}"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   962
    and "(\<forall>i. a$i \<le> c$i \<and> d$i \<le> b$i) \<Longrightarrow> {c<..<d} \<subseteq> {a .. b}"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   963
    and "(\<forall>i. a$i \<le> c$i \<and> d$i \<le> b$i) \<Longrightarrow> {c<..<d} \<subseteq> {a<..<b}"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   964
  unfolding subset_eq[unfolded Ball_def] unfolding mem_interval_cart
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   965
  by (auto intro: order_trans less_le_trans le_less_trans less_imp_le) (* BH: Why doesn't just "auto" work here? *)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   966
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   967
lemma interval_sing:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   968
  fixes a :: "'a::linorder^'n"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   969
  shows "{a .. a} = {a} \<and> {a<..<a} = {}"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   970
  apply (auto simp add: set_eq_iff less_vec_def less_eq_vec_def vec_eq_iff)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   971
  apply (simp add: order_eq_iff)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   972
  apply (auto simp add: not_less less_imp_le)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   973
  done
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   974
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   975
lemma interval_open_subset_closed_cart:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   976
  fixes a :: "'a::preorder^'n"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   977
  shows "{a<..<b} \<subseteq> {a .. b}"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   978
proof (simp add: subset_eq, rule)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   979
  fix x
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   980
  assume x: "x \<in>{a<..<b}"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   981
  { fix i
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   982
    have "a $ i \<le> x $ i"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   983
      using x order_less_imp_le[of "a$i" "x$i"]
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   984
      by(simp add: set_eq_iff less_vec_def less_eq_vec_def vec_eq_iff)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   985
  }
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   986
  moreover
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   987
  { fix i
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   988
    have "x $ i \<le> b $ i"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   989
      using x order_less_imp_le[of "x$i" "b$i"]
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   990
      by(simp add: set_eq_iff less_vec_def less_eq_vec_def vec_eq_iff)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   991
  }
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   992
  ultimately
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   993
  show "a \<le> x \<and> x \<le> b"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
   994
    by(simp add: set_eq_iff less_vec_def less_eq_vec_def vec_eq_iff)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   995
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
   996
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   997
lemma subset_interval_cart:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   998
  fixes a :: "real^'n"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
   999
  shows "{c .. d} \<subseteq> {a .. b} \<longleftrightarrow> (\<forall>i. c$i \<le> d$i) --> (\<forall>i. a$i \<le> c$i \<and> d$i \<le> b$i)" (is ?th1)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1000
    and "{c .. d} \<subseteq> {a<..<b} \<longleftrightarrow> (\<forall>i. c$i \<le> d$i) --> (\<forall>i. a$i < c$i \<and> d$i < b$i)" (is ?th2)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1001
    and "{c<..<d} \<subseteq> {a .. b} \<longleftrightarrow> (\<forall>i. c$i < d$i) --> (\<forall>i. a$i \<le> c$i \<and> d$i \<le> b$i)" (is ?th3)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1002
    and "{c<..<d} \<subseteq> {a<..<b} \<longleftrightarrow> (\<forall>i. c$i < d$i) --> (\<forall>i. a$i \<le> c$i \<and> d$i \<le> b$i)" (is ?th4)
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1003
  using subset_interval[of c d a b] by (simp_all add: Basis_vec_def inner_axis)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1004
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1005
lemma disjoint_interval_cart:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1006
  fixes a::"real^'n"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1007
  shows "{a .. b} \<inter> {c .. d} = {} \<longleftrightarrow> (\<exists>i. (b$i < a$i \<or> d$i < c$i \<or> b$i < c$i \<or> d$i < a$i))" (is ?th1)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1008
    and "{a .. b} \<inter> {c<..<d} = {} \<longleftrightarrow> (\<exists>i. (b$i < a$i \<or> d$i \<le> c$i \<or> b$i \<le> c$i \<or> d$i \<le> a$i))" (is ?th2)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1009
    and "{a<..<b} \<inter> {c .. d} = {} \<longleftrightarrow> (\<exists>i. (b$i \<le> a$i \<or> d$i < c$i \<or> b$i \<le> c$i \<or> d$i \<le> a$i))" (is ?th3)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1010
    and "{a<..<b} \<inter> {c<..<d} = {} \<longleftrightarrow> (\<exists>i. (b$i \<le> a$i \<or> d$i \<le> c$i \<or> b$i \<le> c$i \<or> d$i \<le> a$i))" (is ?th4)
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1011
  using disjoint_interval[of a b c d] by (simp_all add: Basis_vec_def inner_axis)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1012
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1013
lemma inter_interval_cart:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1014
  fixes a :: "'a::linorder^'n"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1015
  shows "{a .. b} \<inter> {c .. d} =  {(\<chi> i. max (a$i) (c$i)) .. (\<chi> i. min (b$i) (d$i))}"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
  1016
  unfolding set_eq_iff and Int_iff and mem_interval_cart
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1017
  by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1018
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1019
lemma closed_interval_left_cart:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1020
  fixes b :: "real^'n"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1021
  shows "closed {x::real^'n. \<forall>i. x$i \<le> b$i}"
44233
aa74ce315bae add simp rules for isCont
huffman
parents: 44219
diff changeset
  1022
  by (simp add: Collect_all_eq closed_INT closed_Collect_le)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1023
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1024
lemma closed_interval_right_cart:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1025
  fixes a::"real^'n"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1026
  shows "closed {x::real^'n. \<forall>i. a$i \<le> x$i}"
44233
aa74ce315bae add simp rules for isCont
huffman
parents: 44219
diff changeset
  1027
  by (simp add: Collect_all_eq closed_INT closed_Collect_le)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1028
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1029
lemma is_interval_cart:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1030
  "is_interval (s::(real^'n) set) \<longleftrightarrow>
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1031
    (\<forall>a\<in>s. \<forall>b\<in>s. \<forall>x. (\<forall>i. ((a$i \<le> x$i \<and> x$i \<le> b$i) \<or> (b$i \<le> x$i \<and> x$i \<le> a$i))) \<longrightarrow> x \<in> s)"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1032
  by (simp add: is_interval_def Ball_def Basis_vec_def inner_axis imp_ex)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1033
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1034
lemma closed_halfspace_component_le_cart: "closed {x::real^'n. x$i \<le> a}"
44233
aa74ce315bae add simp rules for isCont
huffman
parents: 44219
diff changeset
  1035
  by (simp add: closed_Collect_le)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1036
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1037
lemma closed_halfspace_component_ge_cart: "closed {x::real^'n. x$i \<ge> a}"
44233
aa74ce315bae add simp rules for isCont
huffman
parents: 44219
diff changeset
  1038
  by (simp add: closed_Collect_le)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1039
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1040
lemma open_halfspace_component_lt_cart: "open {x::real^'n. x$i < a}"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1041
  by (simp add: open_Collect_less)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1042
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1043
lemma open_halfspace_component_gt_cart: "open {x::real^'n. x$i  > a}"
44233
aa74ce315bae add simp rules for isCont
huffman
parents: 44219
diff changeset
  1044
  by (simp add: open_Collect_less)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1045
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1046
lemma Lim_component_le_cart:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1047
  fixes f :: "'a \<Rightarrow> real^'n"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1048
  assumes "(f ---> l) net" "\<not> (trivial_limit net)"  "eventually (\<lambda>x. f x $i \<le> b) net"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1049
  shows "l$i \<le> b"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1050
  by (rule tendsto_le[OF assms(2) tendsto_const tendsto_vec_nth, OF assms(1, 3)])
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1051
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1052
lemma Lim_component_ge_cart:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1053
  fixes f :: "'a \<Rightarrow> real^'n"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1054
  assumes "(f ---> l) net"  "\<not> (trivial_limit net)"  "eventually (\<lambda>x. b \<le> (f x)$i) net"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1055
  shows "b \<le> l$i"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1056
  by (rule tendsto_le[OF assms(2) tendsto_vec_nth tendsto_const, OF assms(1, 3)])
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1057
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1058
lemma Lim_component_eq_cart:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1059
  fixes f :: "'a \<Rightarrow> real^'n"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1060
  assumes net: "(f ---> l) net" "~(trivial_limit net)" and ev:"eventually (\<lambda>x. f(x)$i = b) net"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1061
  shows "l$i = b"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1062
  using ev[unfolded order_eq_iff eventually_conj_iff] and
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1063
    Lim_component_ge_cart[OF net, of b i] and
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1064
    Lim_component_le_cart[OF net, of i b] by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1065
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1066
lemma connected_ivt_component_cart:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1067
  fixes x :: "real^'n"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1068
  shows "connected s \<Longrightarrow> x \<in> s \<Longrightarrow> y \<in> s \<Longrightarrow> x$k \<le> a \<Longrightarrow> a \<le> y$k \<Longrightarrow> (\<exists>z\<in>s.  z$k = a)"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1069
  using connected_ivt_hyperplane[of s x y "axis k 1" a]
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1070
  by (auto simp add: inner_axis inner_commute)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1071
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1072
lemma subspace_substandard_cart: "subspace {x::real^_. (\<forall>i. P i \<longrightarrow> x$i = 0)}"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1073
  unfolding subspace_def by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1074
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1075
lemma closed_substandard_cart:
44213
6fb54701a11b add lemmas open_Collect_less, closed_Collect_le, closed_Collect_eq;
huffman
parents: 44211
diff changeset
  1076
  "closed {x::'a::real_normed_vector ^ 'n. \<forall>i. P i \<longrightarrow> x$i = 0}"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1077
proof -
44213
6fb54701a11b add lemmas open_Collect_less, closed_Collect_le, closed_Collect_eq;
huffman
parents: 44211
diff changeset
  1078
  { fix i::'n
6fb54701a11b add lemmas open_Collect_less, closed_Collect_le, closed_Collect_eq;
huffman
parents: 44211
diff changeset
  1079
    have "closed {x::'a ^ 'n. P i \<longrightarrow> x$i = 0}"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1080
      by (cases "P i") (simp_all add: closed_Collect_eq) }
44213
6fb54701a11b add lemmas open_Collect_less, closed_Collect_le, closed_Collect_eq;
huffman
parents: 44211
diff changeset
  1081
  thus ?thesis
6fb54701a11b add lemmas open_Collect_less, closed_Collect_le, closed_Collect_eq;
huffman
parents: 44211
diff changeset
  1082
    unfolding Collect_all_eq by (simp add: closed_INT)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1083
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1084
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1085
lemma dim_substandard_cart: "dim {x::real^'n. \<forall>i. i \<notin> d \<longrightarrow> x$i = 0} = card d"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1086
  (is "dim ?A = _")
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1087
proof -
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1088
  let ?a = "\<lambda>x. axis x 1 :: real^'n"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1089
  have *: "{x. \<forall>i\<in>Basis. i \<notin> ?a ` d \<longrightarrow> x \<bullet> i = 0} = ?A"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1090
    by (auto simp: image_iff Basis_vec_def axis_eq_axis inner_axis)
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1091
  have "?a ` d \<subseteq> Basis"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1092
    by (auto simp: Basis_vec_def)
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1093
  thus ?thesis
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1094
    using dim_substandard[of "?a ` d"] card_image[of ?a d]
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1095
    by (auto simp: axis_eq_axis inj_on_def *)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1096
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1097
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1098
lemma affinity_inverses:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1099
  assumes m0: "m \<noteq> (0::'a::field)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1100
  shows "(\<lambda>x. m *s x + c) o (\<lambda>x. inverse(m) *s x + (-(inverse(m) *s c))) = id"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1101
  "(\<lambda>x. inverse(m) *s x + (-(inverse(m) *s c))) o (\<lambda>x. m *s x + c) = id"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1102
  using m0
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1103
  apply (auto simp add: fun_eq_iff vector_add_ldistrib)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1104
  apply (simp_all add: vector_smult_lneg[symmetric] vector_smult_assoc vector_sneg_minus1[symmetric])
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1105
  done
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1106
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1107
lemma vector_affinity_eq:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1108
  assumes m0: "(m::'a::field) \<noteq> 0"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1109
  shows "m *s x + c = y \<longleftrightarrow> x = inverse m *s y + -(inverse m *s c)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1110
proof
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1111
  assume h: "m *s x + c = y"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1112
  hence "m *s x = y - c" 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:
diff changeset
  1113
  hence "inverse m *s (m *s x) = inverse m *s (y - c)" by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1114
  then show "x = inverse m *s y + - (inverse m *s c)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1115
    using m0 by (simp add: vector_smult_assoc vector_ssub_ldistrib)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1116
next
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1117
  assume h: "x = inverse m *s y + - (inverse m *s c)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1118
  show "m *s x + c = y" unfolding h diff_minus[symmetric]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1119
    using m0 by (simp add: vector_smult_assoc vector_ssub_ldistrib)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1120
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1121
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1122
lemma vector_eq_affinity:
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1123
    "(m::'a::field) \<noteq> 0 ==> (y = m *s x + c \<longleftrightarrow> inverse(m) *s y + -(inverse(m) *s c) = x)"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1124
  using vector_affinity_eq[where m=m and x=x and y=y and c=c]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1125
  by metis
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1126
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1127
lemma vector_cart:
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1128
  fixes f :: "real^'n \<Rightarrow> real"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1129
  shows "(\<chi> i. f (axis i 1)) = (\<Sum>i\<in>Basis. f i *\<^sub>R i)"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1130
  unfolding euclidean_eq_iff[where 'a="real^'n"]
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1131
  by simp (simp add: Basis_vec_def inner_axis)
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1132
  
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1133
lemma const_vector_cart:"((\<chi> i. d)::real^'n) = (\<Sum>i\<in>Basis. d *\<^sub>R i)"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1134
  by (rule vector_cart)
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1135
44360
ea609ebdeebf section -> subsection
huffman
parents: 44282
diff changeset
  1136
subsection "Convex Euclidean Space"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1137
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1138
lemma Cart_1:"(1::real^'n) = \<Sum>Basis"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1139
  using const_vector_cart[of 1] by (simp add: one_vec_def)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1140
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1141
declare vector_add_ldistrib[simp] vector_ssub_ldistrib[simp] vector_smult_assoc[simp] vector_smult_rneg[simp]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1142
declare vector_sadd_rdistrib[simp] vector_sub_rdistrib[simp]
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1143
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1144
lemmas vector_component_simps = vector_minus_component vector_smult_component vector_add_component less_eq_vec_def vec_lambda_beta vector_uminus_component
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1145
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1146
lemma convex_box_cart:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1147
  assumes "\<And>i. convex {x. P i x}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1148
  shows "convex {x. \<forall>i. P i (x$i)}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1149
  using assms unfolding convex_def by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1150
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1151
lemma convex_positive_orthant_cart: "convex {x::real^'n. (\<forall>i. 0 \<le> x$i)}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1152
  by (rule convex_box_cart) (simp add: atLeast_def[symmetric] convex_real_interval)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1153
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1154
lemma unit_interval_convex_hull_cart:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1155
  "{0::real^'n .. 1} = convex hull {x. \<forall>i. (x$i = 0) \<or> (x$i = 1)}" (is "?int = convex hull ?points")
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1156
  unfolding Cart_1 unit_interval_convex_hull[where 'a="real^'n"]
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1157
  by (rule arg_cong[where f="\<lambda>x. convex hull x"]) (simp add: Basis_vec_def inner_axis)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1158
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1159
lemma cube_convex_hull_cart:
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1160
  assumes "0 < d"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1161
  obtains s::"(real^'n) set"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1162
    where "finite s" "{x - (\<chi> i. d) .. x + (\<chi> i. d)} = convex hull s"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1163
proof -
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1164
  from cube_convex_hull [OF assms, of x] guess s .
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1165
  with that[of s] show thesis by (simp add: const_vector_cart)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1166
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1167
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1168
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1169
subsection "Derivative"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1170
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1171
lemma differentiable_at_imp_differentiable_on:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1172
  "(\<forall>x\<in>(s::(real^'n) set). f differentiable at x) \<Longrightarrow> f differentiable_on s"
51641
cd05e9fcc63d remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents: 51489
diff changeset
  1173
  by (metis differentiable_at_withinI differentiable_on_def)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1174
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1175
definition "jacobian f net = matrix(frechet_derivative f net)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1176
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1177
lemma jacobian_works:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1178
  "(f::(real^'a) \<Rightarrow> (real^'b)) differentiable net \<longleftrightarrow>
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1179
    (f has_derivative (\<lambda>h. (jacobian f net) *v h)) net"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1180
  apply rule
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1181
  unfolding jacobian_def
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1182
  apply (simp only: matrix_works[OF linear_frechet_derivative]) defer
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1183
  apply (rule differentiableI)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1184
  apply assumption
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1185
  unfolding frechet_derivative_works
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1186
  apply assumption
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1187
  done
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1188
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1189
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1190
subsection {* Component of the differential must be zero if it exists at a local
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1191
  maximum or minimum for that corresponding component. *}
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1192
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1193
lemma differential_zero_maxmin_cart:
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1194
  fixes f::"real^'a \<Rightarrow> real^'b"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1195
  assumes "0 < e" "((\<forall>y \<in> ball x e. (f y)$k \<le> (f x)$k) \<or> (\<forall>y\<in>ball x e. (f x)$k \<le> (f y)$k))"
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1196
    "f differentiable (at x)"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1197
  shows "jacobian f (at x) $ k = 0"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1198
  using differential_zero_maxmin_component[of "axis k 1" e x f] assms
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1199
    vector_cart[of "\<lambda>j. frechet_derivative f (at x) j $ k"]
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1200
  by (simp add: Basis_vec_def axis_eq_axis inner_axis jacobian_def matrix_def)
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1201
37494
6e9f48cf6adf Make latex happy
hoelzl
parents: 37489
diff changeset
  1202
subsection {* Lemmas for working on @{typ "real^1"} *}
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1203
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1204
lemma forall_1[simp]: "(\<forall>i::1. P i) \<longleftrightarrow> P 1"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1205
  by (metis (full_types) num1_eq_iff)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1206
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1207
lemma ex_1[simp]: "(\<exists>x::1. P x) \<longleftrightarrow> P 1"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1208
  by auto (metis (full_types) num1_eq_iff)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1209
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1210
lemma exhaust_2:
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1211
  fixes x :: 2
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1212
  shows "x = 1 \<or> x = 2"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1213
proof (induct x)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1214
  case (of_int z)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1215
  then have "0 <= z" and "z < 2" by simp_all
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1216
  then have "z = 0 | z = 1" by arith
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1217
  then show ?case by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1218
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1219
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1220
lemma forall_2: "(\<forall>i::2. P i) \<longleftrightarrow> P 1 \<and> P 2"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1221
  by (metis exhaust_2)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1222
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1223
lemma exhaust_3:
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1224
  fixes x :: 3
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1225
  shows "x = 1 \<or> x = 2 \<or> x = 3"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1226
proof (induct x)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1227
  case (of_int z)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1228
  then have "0 <= z" and "z < 3" by simp_all
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1229
  then have "z = 0 \<or> z = 1 \<or> z = 2" by arith
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1230
  then show ?case by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1231
qed
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1232
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1233
lemma forall_3: "(\<forall>i::3. P i) \<longleftrightarrow> P 1 \<and> P 2 \<and> P 3"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1234
  by (metis exhaust_3)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1235
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1236
lemma UNIV_1 [simp]: "UNIV = {1::1}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1237
  by (auto simp add: num1_eq_iff)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1238
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1239
lemma UNIV_2: "UNIV = {1::2, 2::2}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1240
  using exhaust_2 by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1241
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1242
lemma UNIV_3: "UNIV = {1::3, 2::3, 3::3}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1243
  using exhaust_3 by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1244
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1245
lemma setsum_1: "setsum f (UNIV::1 set) = f 1"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1246
  unfolding UNIV_1 by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1247
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1248
lemma setsum_2: "setsum f (UNIV::2 set) = f 1 + f 2"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1249
  unfolding UNIV_2 by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1250
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1251
lemma setsum_3: "setsum f (UNIV::3 set) = f 1 + f 2 + f 3"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1252
  unfolding UNIV_3 by (simp add: add_ac)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1253
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1254
instantiation num1 :: cart_one
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1255
begin
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1256
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1257
instance
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1258
proof
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1259
  show "CARD(1) = Suc 0" by auto
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1260
qed
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1261
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1262
end
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1263
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1264
subsection{* The collapse of the general concepts to dimension one. *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1265
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1266
lemma vector_one: "(x::'a ^1) = (\<chi> i. (x$1))"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
  1267
  by (simp add: vec_eq_iff)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1268
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1269
lemma forall_one: "(\<forall>(x::'a ^1). P x) \<longleftrightarrow> (\<forall>x. P(\<chi> i. x))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1270
  apply auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1271
  apply (erule_tac x= "x$1" in allE)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1272
  apply (simp only: vector_one[symmetric])
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1273
  done
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1274
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1275
lemma norm_vector_1: "norm (x :: _^1) = norm (x$1)"
44136
e63ad7d5158d more uniform naming scheme for finite cartesian product type and related theorems
huffman
parents: 44135
diff changeset
  1276
  by (simp add: norm_vec_def)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1277
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1278
lemma norm_real: "norm(x::real ^ 1) = abs(x$1)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1279
  by (simp add: norm_vector_1)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1280
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1281
lemma dist_real: "dist(x::real ^ 1) y = abs((x$1) - (y$1))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1282
  by (auto simp add: norm_real dist_norm)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1283
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1284
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1285
subsection{* Explicit vector construction from lists. *}
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1286
43995
c479836d9048 simplified definition of vector (also removed Cartesian_Euclidean_Space.from_nat which collides with Countable.from_nat)
hoelzl
parents: 42814
diff changeset
  1287
definition "vector l = (\<chi> i. foldr (\<lambda>x f n. fun_upd (f (n+1)) n x) l (\<lambda>n x. 0) 1 i)"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1288
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1289
lemma vector_1: "(vector[x]) $1 = x"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1290
  unfolding vector_def by simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1291
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1292
lemma vector_2:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1293
 "(vector[x,y]) $1 = x"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1294
 "(vector[x,y] :: 'a^2)$2 = (y::'a::zero)"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1295
  unfolding vector_def by simp_all
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1296
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1297
lemma vector_3:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1298
 "(vector [x,y,z] ::('a::zero)^3)$1 = x"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1299
 "(vector [x,y,z] ::('a::zero)^3)$2 = y"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1300
 "(vector [x,y,z] ::('a::zero)^3)$3 = z"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1301
  unfolding vector_def by simp_all
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1302
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1303
lemma forall_vector_1: "(\<forall>v::'a::zero^1. P v) \<longleftrightarrow> (\<forall>x. P(vector[x]))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1304
  apply auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1305
  apply (erule_tac x="v$1" in allE)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1306
  apply (subgoal_tac "vector [v$1] = v")
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1307
  apply simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1308
  apply (vector vector_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1309
  apply simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1310
  done
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1311
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1312
lemma forall_vector_2: "(\<forall>v::'a::zero^2. P v) \<longleftrightarrow> (\<forall>x y. P(vector[x, y]))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1313
  apply auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1314
  apply (erule_tac x="v$1" in allE)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1315
  apply (erule_tac x="v$2" in allE)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1316
  apply (subgoal_tac "vector [v$1, v$2] = v")
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1317
  apply simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1318
  apply (vector vector_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1319
  apply (simp add: forall_2)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1320
  done
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1321
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1322
lemma forall_vector_3: "(\<forall>v::'a::zero^3. P v) \<longleftrightarrow> (\<forall>x y z. P(vector[x, y, z]))"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1323
  apply auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1324
  apply (erule_tac x="v$1" in allE)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1325
  apply (erule_tac x="v$2" in allE)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1326
  apply (erule_tac x="v$3" in allE)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1327
  apply (subgoal_tac "vector [v$1, v$2, v$3] = v")
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1328
  apply simp
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1329
  apply (vector vector_def)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1330
  apply (simp add: forall_3)
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1331
  done
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1332
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1333
lemma bounded_linear_component_cart[intro]: "bounded_linear (\<lambda>x::real^'n. x $ k)"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1334
  apply (rule bounded_linearI[where K=1])
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1335
  using component_le_norm_cart[of _ k] unfolding real_norm_def by auto
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1336
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1337
lemma integral_component_eq_cart[simp]:
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1338
  fixes f :: "'n::ordered_euclidean_space \<Rightarrow> real^'m"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1339
  assumes "f integrable_on s"
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1340
  shows "integral s (\<lambda>x. f x $ k) = integral s f $ k"
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1341
  using integral_linear[OF assms(1) bounded_linear_component_cart,unfolded o_def] .
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1342
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1343
lemma interval_split_cart:
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1344
  "{a..b::real^'n} \<inter> {x. x$k \<le> c} = {a .. (\<chi> i. if i = k then min (b$k) c else b$i)}"
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1345
  "{a..b} \<inter> {x. x$k \<ge> c} = {(\<chi> i. if i = k then max (a$k) c else a$i) .. b}"
49644
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1346
  apply (rule_tac[!] set_eqI)
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1347
  unfolding Int_iff mem_interval_cart mem_Collect_eq
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1348
  unfolding vec_lambda_beta
343bfcbad2ec tuned proofs;
wenzelm
parents: 49197
diff changeset
  1349
  by auto
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1350
50526
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1351
lemma interval_bij_bij_cart: fixes x::"real^'n" assumes "\<forall>i. a$i < b$i \<and> u$i < v$i" 
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1352
  shows "interval_bij (a,b) (u,v) (interval_bij (u,v) (a,b) x) = x"
899c9c4e4a4c Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents: 49962
diff changeset
  1353
  using assms by (intro interval_bij_bij) (auto simp: Basis_vec_def inner_axis)
37489
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1354
44e42d392c6e Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
diff changeset
  1355
end