src/HOL/Analysis/L2_Norm.thy
author wenzelm
Fri, 12 Apr 2019 22:09:25 +0200
changeset 70136 f03a01a18c6e
parent 69676 56acd449da41
permissions -rw-r--r--
modernized tags: default scope excludes proof;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
63627
6ddb43c6b711 rename HOL-Multivariate_Analysis to HOL-Analysis.
hoelzl
parents: 60974
diff changeset
     1
(*  Title:      HOL/Analysis/L2_Norm.thy
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
     2
    Author:     Brian Huffman, Portland State University
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
     3
*)
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
     4
69676
56acd449da41 chapters for analysis manual
immler
parents: 69600
diff changeset
     5
chapter \<open>Linear Algebra\<close>
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
     6
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
     7
theory L2_Norm
67006
b1278ed3cd46 prefer main entry points of HOL;
wenzelm
parents: 66453
diff changeset
     8
imports Complex_Main
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
     9
begin
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    10
69676
56acd449da41 chapters for analysis manual
immler
parents: 69600
diff changeset
    11
section \<open>L2 Norm\<close>
56acd449da41 chapters for analysis manual
immler
parents: 69600
diff changeset
    12
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 69676
diff changeset
    13
definition\<^marker>\<open>tag important\<close> L2_set :: "('a \<Rightarrow> real) \<Rightarrow> 'a set \<Rightarrow> real" where
69600
86e8e7347ac0 typed definitions
nipkow
parents: 69546
diff changeset
    14
"L2_set f A = sqrt (\<Sum>i\<in>A. (f i)\<^sup>2)"
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    15
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    16
lemma L2_set_cong:
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    17
  "\<lbrakk>A = B; \<And>x. x \<in> B \<Longrightarrow> f x = g x\<rbrakk> \<Longrightarrow> L2_set f A = L2_set g B"
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    18
  unfolding L2_set_def by simp
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    19
69546
27dae626822b prefer naming convention from datatype package for strong congruence rules
haftmann
parents: 69164
diff changeset
    20
lemma L2_set_cong_simp:
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    21
  "\<lbrakk>A = B; \<And>x. x \<in> B =simp=> f x = g x\<rbrakk> \<Longrightarrow> L2_set f A = L2_set g B"
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    22
  unfolding L2_set_def simp_implies_def by simp
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    23
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    24
lemma L2_set_infinite [simp]: "\<not> finite A \<Longrightarrow> L2_set f A = 0"
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    25
  unfolding L2_set_def by simp
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    26
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    27
lemma L2_set_empty [simp]: "L2_set f {} = 0"
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    28
  unfolding L2_set_def by simp
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    29
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    30
lemma L2_set_insert [simp]:
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    31
  "\<lbrakk>finite F; a \<notin> F\<rbrakk> \<Longrightarrow>
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    32
    L2_set f (insert a F) = sqrt ((f a)\<^sup>2 + (L2_set f F)\<^sup>2)"
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    33
  unfolding L2_set_def by (simp add: sum_nonneg)
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    34
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    35
lemma L2_set_nonneg [simp]: "0 \<le> L2_set f A"
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    36
  unfolding L2_set_def by (simp add: sum_nonneg)
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    37
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    38
lemma L2_set_0': "\<forall>a\<in>A. f a = 0 \<Longrightarrow> L2_set f A = 0"
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    39
  unfolding L2_set_def by simp
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    40
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    41
lemma L2_set_constant: "L2_set (\<lambda>x. y) A = sqrt (of_nat (card A)) * \<bar>y\<bar>"
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    42
  unfolding L2_set_def by (simp add: real_sqrt_mult)
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    43
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    44
lemma L2_set_mono:
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    45
  assumes "\<And>i. i \<in> K \<Longrightarrow> f i \<le> g i"
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    46
  assumes "\<And>i. i \<in> K \<Longrightarrow> 0 \<le> f i"
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    47
  shows "L2_set f K \<le> L2_set g K"
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    48
  unfolding L2_set_def
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
    49
  by (simp add: sum_nonneg sum_mono power_mono assms)
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    50
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    51
lemma L2_set_strict_mono:
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    52
  assumes "finite K" and "K \<noteq> {}"
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    53
  assumes "\<And>i. i \<in> K \<Longrightarrow> f i < g i"
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    54
  assumes "\<And>i. i \<in> K \<Longrightarrow> 0 \<le> f i"
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    55
  shows "L2_set f K < L2_set g K"
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    56
  unfolding L2_set_def
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
    57
  by (simp add: sum_strict_mono power_strict_mono assms)
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    58
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    59
lemma L2_set_right_distrib:
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    60
  "0 \<le> r \<Longrightarrow> r * L2_set f A = L2_set (\<lambda>x. r * f x) A"
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    61
  unfolding L2_set_def
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    62
  apply (simp add: power_mult_distrib)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
    63
  apply (simp add: sum_distrib_left [symmetric])
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
    64
  apply (simp add: real_sqrt_mult sum_nonneg)
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    65
  done
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    66
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    67
lemma L2_set_left_distrib:
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    68
  "0 \<le> r \<Longrightarrow> L2_set f A * r = L2_set (\<lambda>x. f x * r) A"
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    69
  unfolding L2_set_def
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    70
  apply (simp add: power_mult_distrib)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
    71
  apply (simp add: sum_distrib_right [symmetric])
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
    72
  apply (simp add: real_sqrt_mult sum_nonneg)
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    73
  done
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    74
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    75
lemma L2_set_eq_0_iff: "finite A \<Longrightarrow> L2_set f A = 0 \<longleftrightarrow> (\<forall>x\<in>A. f x = 0)"
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    76
  unfolding L2_set_def
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
    77
  by (simp add: sum_nonneg sum_nonneg_eq_0_iff)
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    78
68607
67bb59e49834 make theorem, corollary, and proposition %important for HOL-Analysis manual
immler
parents: 68465
diff changeset
    79
proposition L2_set_triangle_ineq:
67156
3a9966b88a50 "important" annotations
nipkow
parents: 67155
diff changeset
    80
  "L2_set (\<lambda>i. f i + g i) A \<le> L2_set f A + L2_set g A"
68607
67bb59e49834 make theorem, corollary, and proposition %important for HOL-Analysis manual
immler
parents: 68465
diff changeset
    81
proof (cases "finite A")
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    82
  case False
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    83
  thus ?thesis by simp
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    84
next
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    85
  case True
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    86
  thus ?thesis
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    87
  proof (induct set: finite)
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    88
    case empty
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    89
    show ?case by simp
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    90
  next
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    91
    case (insert x F)
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    92
    hence "sqrt ((f x + g x)\<^sup>2 + (L2_set (\<lambda>i. f i + g i) F)\<^sup>2) \<le>
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    93
           sqrt ((f x + g x)\<^sup>2 + (L2_set f F + L2_set g F)\<^sup>2)"
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    94
      by (intro real_sqrt_le_mono add_left_mono power_mono insert
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    95
                L2_set_nonneg add_increasing zero_le_power2)
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    96
    also have
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
    97
      "\<dots> \<le> sqrt ((f x)\<^sup>2 + (L2_set f F)\<^sup>2) + sqrt ((g x)\<^sup>2 + (L2_set g F)\<^sup>2)"
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    98
      by (rule real_sqrt_sum_squares_triangle_ineq)
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
    99
    finally show ?case
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   100
      using insert by simp
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   101
  qed
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   102
qed
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   103
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
   104
lemma L2_set_le_sum [rule_format]:
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
   105
  "(\<forall>i\<in>A. 0 \<le> f i) \<longrightarrow> L2_set f A \<le> sum f A"
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   106
  apply (cases "finite A")
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   107
  apply (induct set: finite)
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   108
  apply simp
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   109
  apply clarsimp
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   110
  apply (erule order_trans [OF sqrt_sum_squares_le_sum])
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   111
  apply simp
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   112
  apply simp
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   113
  apply simp
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   114
  done
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   115
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
   116
lemma L2_set_le_sum_abs: "L2_set f A \<le> (\<Sum>i\<in>A. \<bar>f i\<bar>)"
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   117
  apply (cases "finite A")
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   118
  apply (induct set: finite)
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   119
  apply simp
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   120
  apply simp
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   121
  apply (rule order_trans [OF sqrt_sum_squares_le_sum_abs])
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   122
  apply simp
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   123
  apply simp
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   124
  done
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   125
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
   126
lemma L2_set_mult_ineq: "(\<Sum>i\<in>A. \<bar>f i\<bar> * \<bar>g i\<bar>) \<le> L2_set f A * L2_set g A"
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   127
  apply (cases "finite A")
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   128
  apply (induct set: finite)
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   129
  apply simp
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   130
  apply (rule power2_le_imp_le, simp)
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   131
  apply (rule order_trans)
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   132
  apply (rule power_mono)
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   133
  apply (erule add_left_mono)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   134
  apply (simp add: sum_nonneg)
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   135
  apply (simp add: power2_sum)
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   136
  apply (simp add: power_mult_distrib)
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 44142
diff changeset
   137
  apply (simp add: distrib_left distrib_right)
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   138
  apply (rule ord_le_eq_trans)
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
   139
  apply (rule L2_set_mult_ineq_lemma)
56536
aefb4a8da31f made mult_nonneg_nonneg a simp rule
nipkow
parents: 53015
diff changeset
   140
  apply simp_all
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   141
  done
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   142
67155
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
   143
lemma member_le_L2_set: "\<lbrakk>finite A; i \<in> A\<rbrakk> \<Longrightarrow> f i \<le> L2_set f A"
9e5b05d54f9d canonical name
nipkow
parents: 67144
diff changeset
   144
  unfolding L2_set_def
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63938
diff changeset
   145
  by (auto intro!: member_le_sum real_le_rsqrt)
36333
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   146
82356c9e218a move l2-norm stuff into separate theory file
huffman
parents:
diff changeset
   147
end