src/HOL/Library/Inner_Product.thy
author hoelzl
Thu, 31 Jan 2013 17:42:12 +0100
changeset 51002 496013a6eb38
parent 49962 a8cc904a6820
child 51642 400ec5ae7f8f
permissions -rw-r--r--
remove unnecessary assumption from real_normed_vector
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41959
b460124855b8 tuned headers;
wenzelm
parents: 39302
diff changeset
     1
(*  Title:      HOL/Library/Inner_Product.thy
b460124855b8 tuned headers;
wenzelm
parents: 39302
diff changeset
     2
    Author:     Brian Huffman
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
     3
*)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
     4
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
     5
header {* Inner Product Spaces and the Gradient Derivative *}
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
     6
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
     7
theory Inner_Product
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
     8
imports FrechetDeriv
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
     9
begin
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    10
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    11
subsection {* Real inner product spaces *}
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    12
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31446
diff changeset
    13
text {*
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31446
diff changeset
    14
  Temporarily relax type constraints for @{term "open"},
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31446
diff changeset
    15
  @{term dist}, and @{term norm}.
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31446
diff changeset
    16
*}
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31446
diff changeset
    17
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31446
diff changeset
    18
setup {* Sign.add_const_constraint
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31446
diff changeset
    19
  (@{const_name "open"}, SOME @{typ "'a::open set \<Rightarrow> bool"}) *}
31446
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31417
diff changeset
    20
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31417
diff changeset
    21
setup {* Sign.add_const_constraint
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31417
diff changeset
    22
  (@{const_name dist}, SOME @{typ "'a::dist \<Rightarrow> 'a \<Rightarrow> real"}) *}
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31417
diff changeset
    23
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31417
diff changeset
    24
setup {* Sign.add_const_constraint
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31417
diff changeset
    25
  (@{const_name norm}, SOME @{typ "'a::norm \<Rightarrow> real"}) *}
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31417
diff changeset
    26
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31446
diff changeset
    27
class real_inner = real_vector + sgn_div_norm + dist_norm + open_dist +
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    28
  fixes inner :: "'a \<Rightarrow> 'a \<Rightarrow> real"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    29
  assumes inner_commute: "inner x y = inner y x"
31590
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
    30
  and inner_add_left: "inner (x + y) z = inner x z + inner y z"
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
    31
  and inner_scaleR_left [simp]: "inner (scaleR r x) y = r * (inner x y)"
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    32
  and inner_ge_zero [simp]: "0 \<le> inner x x"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    33
  and inner_eq_zero_iff [simp]: "inner x x = 0 \<longleftrightarrow> x = 0"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    34
  and norm_eq_sqrt_inner: "norm x = sqrt (inner x x)"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    35
begin
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    36
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    37
lemma inner_zero_left [simp]: "inner 0 x = 0"
31590
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
    38
  using inner_add_left [of 0 0 x] by simp
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    39
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    40
lemma inner_minus_left [simp]: "inner (- x) y = - inner x y"
31590
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
    41
  using inner_add_left [of x "- x" y] by simp
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    42
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    43
lemma inner_diff_left: "inner (x - y) z = inner x z - inner y z"
31590
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
    44
  by (simp add: diff_minus inner_add_left)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    45
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
    46
lemma inner_setsum_left: "inner (\<Sum>x\<in>A. f x) y = (\<Sum>x\<in>A. inner (f x) y)"
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
    47
  by (cases "finite A", induct set: finite, simp_all add: inner_add_left)
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
    48
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    49
text {* Transfer distributivity rules to right argument. *}
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    50
31590
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
    51
lemma inner_add_right: "inner x (y + z) = inner x y + inner x z"
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
    52
  using inner_add_left [of y z x] by (simp only: inner_commute)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    53
31590
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
    54
lemma inner_scaleR_right [simp]: "inner x (scaleR r y) = r * (inner x y)"
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    55
  using inner_scaleR_left [of r y x] by (simp only: inner_commute)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    56
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    57
lemma inner_zero_right [simp]: "inner x 0 = 0"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    58
  using inner_zero_left [of x] by (simp only: inner_commute)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    59
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    60
lemma inner_minus_right [simp]: "inner x (- y) = - inner x y"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    61
  using inner_minus_left [of y x] by (simp only: inner_commute)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    62
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    63
lemma inner_diff_right: "inner x (y - z) = inner x y - inner x z"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    64
  using inner_diff_left [of y z x] by (simp only: inner_commute)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    65
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
    66
lemma inner_setsum_right: "inner x (\<Sum>y\<in>A. f y) = (\<Sum>y\<in>A. inner x (f y))"
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
    67
  using inner_setsum_left [of f A x] by (simp only: inner_commute)
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
    68
31590
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
    69
lemmas inner_add [algebra_simps] = inner_add_left inner_add_right
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
    70
lemmas inner_diff [algebra_simps]  = inner_diff_left inner_diff_right
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
    71
lemmas inner_scaleR = inner_scaleR_left inner_scaleR_right
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
    72
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
    73
text {* Legacy theorem names *}
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
    74
lemmas inner_left_distrib = inner_add_left
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
    75
lemmas inner_right_distrib = inner_add_right
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    76
lemmas inner_distrib = inner_left_distrib inner_right_distrib
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    77
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    78
lemma inner_gt_zero_iff [simp]: "0 < inner x x \<longleftrightarrow> x \<noteq> 0"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    79
  by (simp add: order_less_le)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    80
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    81
lemma power2_norm_eq_inner: "(norm x)\<twosuperior> = inner x x"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    82
  by (simp add: norm_eq_sqrt_inner)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    83
30046
49f603f92c47 fix spelling
huffman
parents: 29993
diff changeset
    84
lemma Cauchy_Schwarz_ineq:
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    85
  "(inner x y)\<twosuperior> \<le> inner x x * inner y y"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    86
proof (cases)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    87
  assume "y = 0"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    88
  thus ?thesis by simp
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    89
next
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    90
  assume y: "y \<noteq> 0"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    91
  let ?r = "inner x y / inner y y"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    92
  have "0 \<le> inner (x - scaleR ?r y) (x - scaleR ?r y)"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    93
    by (rule inner_ge_zero)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    94
  also have "\<dots> = inner x x - inner y x * ?r"
31590
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
    95
    by (simp add: inner_diff)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    96
  also have "\<dots> = inner x x - (inner x y)\<twosuperior> / inner y y"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    97
    by (simp add: power2_eq_square inner_commute)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    98
  finally have "0 \<le> inner x x - (inner x y)\<twosuperior> / inner y y" .
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
    99
  hence "(inner x y)\<twosuperior> / inner y y \<le> inner x x"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   100
    by (simp add: le_diff_eq)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   101
  thus "(inner x y)\<twosuperior> \<le> inner x x * inner y y"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   102
    by (simp add: pos_divide_le_eq y)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   103
qed
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   104
30046
49f603f92c47 fix spelling
huffman
parents: 29993
diff changeset
   105
lemma Cauchy_Schwarz_ineq2:
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   106
  "\<bar>inner x y\<bar> \<le> norm x * norm y"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   107
proof (rule power2_le_imp_le)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   108
  have "(inner x y)\<twosuperior> \<le> inner x x * inner y y"
30046
49f603f92c47 fix spelling
huffman
parents: 29993
diff changeset
   109
    using Cauchy_Schwarz_ineq .
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   110
  thus "\<bar>inner x y\<bar>\<twosuperior> \<le> (norm x * norm y)\<twosuperior>"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   111
    by (simp add: power_mult_distrib power2_norm_eq_inner)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   112
  show "0 \<le> norm x * norm y"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   113
    unfolding norm_eq_sqrt_inner
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   114
    by (intro mult_nonneg_nonneg real_sqrt_ge_zero inner_ge_zero)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   115
qed
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   116
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   117
subclass real_normed_vector
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   118
proof
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   119
  fix a :: real and x y :: 'a
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   120
  show "norm x = 0 \<longleftrightarrow> x = 0"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   121
    unfolding norm_eq_sqrt_inner by simp
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   122
  show "norm (x + y) \<le> norm x + norm y"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   123
    proof (rule power2_le_imp_le)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   124
      have "inner x y \<le> norm x * norm y"
30046
49f603f92c47 fix spelling
huffman
parents: 29993
diff changeset
   125
        by (rule order_trans [OF abs_ge_self Cauchy_Schwarz_ineq2])
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   126
      thus "(norm (x + y))\<twosuperior> \<le> (norm x + norm y)\<twosuperior>"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   127
        unfolding power2_sum power2_norm_eq_inner
31590
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
   128
        by (simp add: inner_add inner_commute)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   129
      show "0 \<le> norm x + norm y"
44126
ce44e70d0c47 avoid duplicate rewrite warnings
huffman
parents: 41959
diff changeset
   130
        unfolding norm_eq_sqrt_inner by simp
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   131
    qed
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   132
  have "sqrt (a\<twosuperior> * inner x x) = \<bar>a\<bar> * sqrt (inner x x)"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   133
    by (simp add: real_sqrt_mult_distrib)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   134
  then show "norm (a *\<^sub>R x) = \<bar>a\<bar> * norm x"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   135
    unfolding norm_eq_sqrt_inner
31590
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
   136
    by (simp add: power2_eq_square mult_assoc)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   137
qed
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   138
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   139
end
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   140
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31446
diff changeset
   141
text {*
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31446
diff changeset
   142
  Re-enable constraints for @{term "open"},
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31446
diff changeset
   143
  @{term dist}, and @{term norm}.
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31446
diff changeset
   144
*}
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31446
diff changeset
   145
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31446
diff changeset
   146
setup {* Sign.add_const_constraint
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31446
diff changeset
   147
  (@{const_name "open"}, SOME @{typ "'a::topological_space set \<Rightarrow> bool"}) *}
31446
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31417
diff changeset
   148
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31417
diff changeset
   149
setup {* Sign.add_const_constraint
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31417
diff changeset
   150
  (@{const_name dist}, SOME @{typ "'a::metric_space \<Rightarrow> 'a \<Rightarrow> real"}) *}
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31417
diff changeset
   151
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31417
diff changeset
   152
setup {* Sign.add_const_constraint
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31417
diff changeset
   153
  (@{const_name norm}, SOME @{typ "'a::real_normed_vector \<Rightarrow> real"}) *}
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31417
diff changeset
   154
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   155
lemma bounded_bilinear_inner:
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   156
  "bounded_bilinear (inner::'a::real_inner \<Rightarrow> 'a \<Rightarrow> real)"
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   157
proof
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   158
  fix x y z :: 'a and r :: real
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   159
  show "inner (x + y) z = inner x z + inner y z"
31590
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
   160
    by (rule inner_add_left)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   161
  show "inner x (y + z) = inner x y + inner x z"
31590
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
   162
    by (rule inner_add_right)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   163
  show "inner (scaleR r x) y = scaleR r (inner x y)"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   164
    unfolding real_scaleR_def by (rule inner_scaleR_left)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   165
  show "inner x (scaleR r y) = scaleR r (inner x y)"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   166
    unfolding real_scaleR_def by (rule inner_scaleR_right)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   167
  show "\<exists>K. \<forall>x y::'a. norm (inner x y) \<le> norm x * norm y * K"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   168
  proof
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   169
    show "\<forall>x y::'a. norm (inner x y) \<le> norm x * norm y * 1"
30046
49f603f92c47 fix spelling
huffman
parents: 29993
diff changeset
   170
      by (simp add: Cauchy_Schwarz_ineq2)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   171
  qed
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   172
qed
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   173
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   174
lemmas tendsto_inner [tendsto_intros] =
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   175
  bounded_bilinear.tendsto [OF bounded_bilinear_inner]
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   176
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   177
lemmas isCont_inner [simp] =
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   178
  bounded_bilinear.isCont [OF bounded_bilinear_inner]
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   179
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   180
lemmas FDERIV_inner =
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   181
  bounded_bilinear.FDERIV [OF bounded_bilinear_inner]
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   182
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   183
lemmas bounded_linear_inner_left =
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   184
  bounded_bilinear.bounded_linear_left [OF bounded_bilinear_inner]
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   185
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   186
lemmas bounded_linear_inner_right =
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   187
  bounded_bilinear.bounded_linear_right [OF bounded_bilinear_inner]
44233
aa74ce315bae add simp rules for isCont
huffman
parents: 44126
diff changeset
   188
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   189
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   190
subsection {* Class instances *}
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   191
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   192
instantiation real :: real_inner
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   193
begin
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   194
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   195
definition inner_real_def [simp]: "inner = op *"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   196
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   197
instance proof
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   198
  fix x y z r :: real
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   199
  show "inner x y = inner y x"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   200
    unfolding inner_real_def by (rule mult_commute)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   201
  show "inner (x + y) z = inner x z + inner y z"
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 44902
diff changeset
   202
    unfolding inner_real_def by (rule distrib_right)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   203
  show "inner (scaleR r x) y = r * inner x y"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   204
    unfolding inner_real_def real_scaleR_def by (rule mult_assoc)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   205
  show "0 \<le> inner x x"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   206
    unfolding inner_real_def by simp
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   207
  show "inner x x = 0 \<longleftrightarrow> x = 0"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   208
    unfolding inner_real_def by simp
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   209
  show "norm x = sqrt (inner x x)"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   210
    unfolding inner_real_def by simp
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   211
qed
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   212
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   213
end
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   214
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   215
instantiation complex :: real_inner
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   216
begin
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   217
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   218
definition inner_complex_def:
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   219
  "inner x y = Re x * Re y + Im x * Im y"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   220
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   221
instance proof
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   222
  fix x y z :: complex and r :: real
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   223
  show "inner x y = inner y x"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   224
    unfolding inner_complex_def by (simp add: mult_commute)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   225
  show "inner (x + y) z = inner x z + inner y z"
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 44902
diff changeset
   226
    unfolding inner_complex_def by (simp add: distrib_right)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   227
  show "inner (scaleR r x) y = r * inner x y"
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 44902
diff changeset
   228
    unfolding inner_complex_def by (simp add: distrib_left)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   229
  show "0 \<le> inner x x"
44126
ce44e70d0c47 avoid duplicate rewrite warnings
huffman
parents: 41959
diff changeset
   230
    unfolding inner_complex_def by simp
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   231
  show "inner x x = 0 \<longleftrightarrow> x = 0"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   232
    unfolding inner_complex_def
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   233
    by (simp add: add_nonneg_eq_0_iff complex_Re_Im_cancel_iff)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   234
  show "norm x = sqrt (inner x x)"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   235
    unfolding inner_complex_def complex_norm_def
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   236
    by (simp add: power2_eq_square)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   237
qed
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   238
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   239
end
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   240
44902
9ba11d41cd1f move lemmas about complex number 'i' to Complex.thy and Library/Inner_Product.thy
huffman
parents: 44282
diff changeset
   241
lemma complex_inner_1 [simp]: "inner 1 x = Re x"
9ba11d41cd1f move lemmas about complex number 'i' to Complex.thy and Library/Inner_Product.thy
huffman
parents: 44282
diff changeset
   242
  unfolding inner_complex_def by simp
9ba11d41cd1f move lemmas about complex number 'i' to Complex.thy and Library/Inner_Product.thy
huffman
parents: 44282
diff changeset
   243
9ba11d41cd1f move lemmas about complex number 'i' to Complex.thy and Library/Inner_Product.thy
huffman
parents: 44282
diff changeset
   244
lemma complex_inner_1_right [simp]: "inner x 1 = Re x"
9ba11d41cd1f move lemmas about complex number 'i' to Complex.thy and Library/Inner_Product.thy
huffman
parents: 44282
diff changeset
   245
  unfolding inner_complex_def by simp
9ba11d41cd1f move lemmas about complex number 'i' to Complex.thy and Library/Inner_Product.thy
huffman
parents: 44282
diff changeset
   246
9ba11d41cd1f move lemmas about complex number 'i' to Complex.thy and Library/Inner_Product.thy
huffman
parents: 44282
diff changeset
   247
lemma complex_inner_ii_left [simp]: "inner ii x = Im x"
9ba11d41cd1f move lemmas about complex number 'i' to Complex.thy and Library/Inner_Product.thy
huffman
parents: 44282
diff changeset
   248
  unfolding inner_complex_def by simp
9ba11d41cd1f move lemmas about complex number 'i' to Complex.thy and Library/Inner_Product.thy
huffman
parents: 44282
diff changeset
   249
9ba11d41cd1f move lemmas about complex number 'i' to Complex.thy and Library/Inner_Product.thy
huffman
parents: 44282
diff changeset
   250
lemma complex_inner_ii_right [simp]: "inner x ii = Im x"
9ba11d41cd1f move lemmas about complex number 'i' to Complex.thy and Library/Inner_Product.thy
huffman
parents: 44282
diff changeset
   251
  unfolding inner_complex_def by simp
9ba11d41cd1f move lemmas about complex number 'i' to Complex.thy and Library/Inner_Product.thy
huffman
parents: 44282
diff changeset
   252
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   253
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   254
subsection {* Gradient derivative *}
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   255
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   256
definition
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   257
  gderiv ::
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   258
    "['a::real_inner \<Rightarrow> real, 'a, 'a] \<Rightarrow> bool"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   259
          ("(GDERIV (_)/ (_)/ :> (_))" [1000, 1000, 60] 60)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   260
where
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   261
  "GDERIV f x :> D \<longleftrightarrow> FDERIV f x :> (\<lambda>h. inner h D)"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   262
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   263
lemma deriv_fderiv: "DERIV f x :> D \<longleftrightarrow> FDERIV f x :> (\<lambda>h. h * D)"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   264
  by (simp only: deriv_def field_fderiv_def)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   265
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   266
lemma gderiv_deriv [simp]: "GDERIV f x :> D \<longleftrightarrow> DERIV f x :> D"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   267
  by (simp only: gderiv_def deriv_fderiv inner_real_def)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   268
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   269
lemma GDERIV_DERIV_compose:
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   270
    "\<lbrakk>GDERIV f x :> df; DERIV g (f x) :> dg\<rbrakk>
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   271
     \<Longrightarrow> GDERIV (\<lambda>x. g (f x)) x :> scaleR dg df"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   272
  unfolding gderiv_def deriv_fderiv
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   273
  apply (drule (1) FDERIV_compose)
31590
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
   274
  apply (simp add: mult_ac)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   275
  done
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   276
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   277
lemma FDERIV_subst: "\<lbrakk>FDERIV f x :> df; df = d\<rbrakk> \<Longrightarrow> FDERIV f x :> d"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   278
  by simp
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   279
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   280
lemma GDERIV_subst: "\<lbrakk>GDERIV f x :> df; df = d\<rbrakk> \<Longrightarrow> GDERIV f x :> d"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   281
  by simp
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   282
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   283
lemma GDERIV_const: "GDERIV (\<lambda>x. k) x :> 0"
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   284
  unfolding gderiv_def inner_zero_right by (rule FDERIV_const)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   285
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   286
lemma GDERIV_add:
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   287
    "\<lbrakk>GDERIV f x :> df; GDERIV g x :> dg\<rbrakk>
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   288
     \<Longrightarrow> GDERIV (\<lambda>x. f x + g x) x :> df + dg"
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   289
  unfolding gderiv_def inner_add_right by (rule FDERIV_add)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   290
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   291
lemma GDERIV_minus:
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   292
    "GDERIV f x :> df \<Longrightarrow> GDERIV (\<lambda>x. - f x) x :> - df"
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   293
  unfolding gderiv_def inner_minus_right by (rule FDERIV_minus)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   294
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   295
lemma GDERIV_diff:
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   296
    "\<lbrakk>GDERIV f x :> df; GDERIV g x :> dg\<rbrakk>
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   297
     \<Longrightarrow> GDERIV (\<lambda>x. f x - g x) x :> df - dg"
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   298
  unfolding gderiv_def inner_diff_right by (rule FDERIV_diff)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   299
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   300
lemma GDERIV_scaleR:
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   301
    "\<lbrakk>DERIV f x :> df; GDERIV g x :> dg\<rbrakk>
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   302
     \<Longrightarrow> GDERIV (\<lambda>x. scaleR (f x) (g x)) x
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   303
      :> (scaleR (f x) dg + scaleR df (g x))"
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   304
  unfolding gderiv_def deriv_fderiv inner_add_right inner_scaleR_right
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   305
  apply (rule FDERIV_subst)
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   306
  apply (erule (1) FDERIV_scaleR)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   307
  apply (simp add: mult_ac)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   308
  done
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   309
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   310
lemma GDERIV_mult:
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   311
    "\<lbrakk>GDERIV f x :> df; GDERIV g x :> dg\<rbrakk>
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   312
     \<Longrightarrow> GDERIV (\<lambda>x. f x * g x) x :> scaleR (f x) dg + scaleR (g x) df"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   313
  unfolding gderiv_def
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   314
  apply (rule FDERIV_subst)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   315
  apply (erule (1) FDERIV_mult)
31590
776d6a4c1327 declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
huffman
parents: 31492
diff changeset
   316
  apply (simp add: inner_add mult_ac)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   317
  done
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   318
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   319
lemma GDERIV_inverse:
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   320
    "\<lbrakk>GDERIV f x :> df; f x \<noteq> 0\<rbrakk>
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   321
     \<Longrightarrow> GDERIV (\<lambda>x. inverse (f x)) x :> - (inverse (f x))\<twosuperior> *\<^sub>R df"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   322
  apply (erule GDERIV_DERIV_compose)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   323
  apply (erule DERIV_inverse [folded numeral_2_eq_2])
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   324
  done
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   325
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   326
lemma GDERIV_norm:
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   327
  assumes "x \<noteq> 0" shows "GDERIV (\<lambda>x. norm x) x :> sgn x"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   328
proof -
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   329
  have 1: "FDERIV (\<lambda>x. inner x x) x :> (\<lambda>h. inner x h + inner h x)"
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44233
diff changeset
   330
    by (intro FDERIV_inner FDERIV_ident)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   331
  have 2: "(\<lambda>h. inner x h + inner h x) = (\<lambda>h. inner h (scaleR 2 x))"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
   332
    by (simp add: fun_eq_iff inner_commute)
29993
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   333
  have "0 < inner x x" using `x \<noteq> 0` by simp
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   334
  then have 3: "DERIV sqrt (inner x x) :> (inverse (sqrt (inner x x)) / 2)"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   335
    by (rule DERIV_real_sqrt)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   336
  have 4: "(inverse (sqrt (inner x x)) / 2) *\<^sub>R 2 *\<^sub>R x = sgn x"
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   337
    by (simp add: sgn_div_norm norm_eq_sqrt_inner)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   338
  show ?thesis
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   339
    unfolding norm_eq_sqrt_inner
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   340
    apply (rule GDERIV_subst [OF _ 4])
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   341
    apply (rule GDERIV_DERIV_compose [where g=sqrt and df="scaleR 2 x"])
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   342
    apply (subst gderiv_def)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   343
    apply (rule FDERIV_subst [OF _ 2])
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   344
    apply (rule 1)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   345
    apply (rule 3)
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   346
    done
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   347
qed
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   348
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   349
lemmas FDERIV_norm = GDERIV_norm [unfolded gderiv_def]
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   350
84b2c432b94a new theory of real inner product spaces
huffman
parents:
diff changeset
   351
end