-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathLsmooth.lean
More file actions
431 lines (388 loc) · 18.3 KB
/
Copy pathLsmooth.lean
File metadata and controls
431 lines (388 loc) · 18.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
/-
Copyright (c) 2023 Chenyi Li, Ziyu Wang, Zaiwen Wen. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Authors: Chenyi Li, Ziyu Wang, Yuxuan Wu, Junda Ying,
Hongjia Chen, Shengyang Xu, Zaiwen Wen
-/
import Mathlib.Topology.EMetricSpace.Lipschitz
import Mathlib.Analysis.Calculus.Deriv.Pow
import Optlib.Optimality.OptimalityConditionOfUnconstrainedProblem
import Optlib.Differential.Lemmas
/-!
# Lsmooth
## Main results
This file mainly concentrates on the properties of the L smooth function.
The main theorem is given as:
* We prove the second order upper bound theorem, i.e.
Let f be a Lipschitz smooth function defined on a convex set s. f is l-Lipschitz smooth on s.
`f(y) ≤ f(x) + ∇ f(x)^T (y-x) + 1 / 2 * ‖y - x‖ ^ 2 ∀ x, y ∈ s.`
* We prove the properties of a convex l-Lipschitz smooth function
Let f be a differentiable convex function defined on ℝ^n, then the following statement is equivalent
(a) `f` is `l` - Lipschitz smooth on ℝ^n.
(b)` g(x) = 1 / 2 * ‖x‖ ^ 2 - f(x)` is convex .
(c) `(∇ f(x) - ∇ f(y)) ^ T(x- y) ≥ 1 / l * ‖∇ f(x) - ∇ f(y)‖ ^ 2 ∀ x, y ∈ ℝ^n.`
* Some relative lemmas are also contained
-/
-- section
variable {E : Type*} [NormedAddCommGroup E] [NormedSpace ℝ E]
open InnerProductSpace Set
variable {f : E → ℝ} {a : ℝ} {f' : E → (E →L[ℝ] ℝ)} {f'' : E → E →L[ℝ] E →L[ℝ] ℝ} {l : NNReal}
theorem lipschitz_continuous_upper_bound {E : Type*}
[NormedAddCommGroup E] [NormedSpace ℝ E]
{f : E → ℝ} {f' : E → (E →L[ℝ] ℝ)} {l : NNReal}
(hd : ∀ x : E, HasFDerivAt f (f' x) x)
(hl : LipschitzWith l f') :
∀ (x y : E), f y ≤ f x + (f' x) (y - x)
+ l / 2 * ‖y - x‖ ^ 2 := by
intro x y; rw [lipschitzWith_iff_norm_sub_le] at hl
let g := fun t : ℝ ↦ f (x + t • (y - x))
let g' := fun t : ℝ ↦ (f' (x + t • (y - x)) (y - x))
let LL := l * ‖y - x‖ ^ 2
obtain gderiv : ∀ t₀ : ℝ , HasDerivAt g (g' t₀) t₀ :=
deriv_function_comp_segment x y hd
have glip : ∀ u v : ℝ, ‖g' u - g' v‖ ≤
l * ‖y - x‖ ^ 2 * ‖u - v‖ := by
intro u v
calc
_ ≤ ‖f' (x + u • (y - x)) - f' (x + v • (y - x))‖ * ‖y - x‖ :=
ContinuousLinearMap.le_opNorm _ (y - x)
_ ≤ l * ‖x + u • (y - x) - (x + v • (y - x))‖ * ‖y - x‖ :=
mul_le_mul_of_nonneg (hl _ _) (le_refl _) (norm_nonneg _) (norm_nonneg _)
_ = l * ‖y - x‖ ^ 2 * ‖u - v‖ := by
rw [← sub_sub, add_sub_right_comm, sub_self, zero_add, ← sub_smul, norm_smul]; ring_nf
let u := fun t₀ : ℝ ↦ g 0 + t₀ * (g' 0) + t₀ ^ 2 * (LL / 2)
let u' := fun t : ℝ ↦ g' 0 + LL * t
have hderiv : ∀ t, HasDerivAt u (u' t) t := by
intro t
apply HasDerivAt.add
· apply HasDerivAt.const_add
· apply hasDerivAt_mul_const
· have : l * ‖y - x‖ ^ 2 * t = (2 * t) * (l * ‖y - x‖ ^ 2 / 2) := by field_simp; ring_nf
rw [this]; apply HasDerivAt.mul_const
obtain hd := HasDerivAt.pow (n := 2) (hasDerivAt_id' t)
simp at hd; exact hd
suffices g 1 ≤ u 1 by
simp [u, g, u', LL, g'] at this
rw [map_sub]; linarith
apply image_le_of_deriv_right_le_deriv_boundary (a := 0) (b := 2)
· exact HasDerivAt.continuousOn (fun x _ ↦ gderiv x)
· exact fun t _ ↦ HasDerivAt.hasDerivWithinAt (gderiv t)
· simp [u]
· exact HasDerivAt.continuousOn (fun x _ ↦ hderiv x)
· exact fun t _ ↦ HasDerivAt.hasDerivWithinAt (hderiv t)
· intro t ht
simp [u', LL]; simp at ht
apply tsub_le_iff_left.mp
apply le_trans (le_abs_self _)
convert (glip t 0); simp; rw [abs_of_nonneg ht.1]
simp
-- end
section
variable {E : Type*} [NormedAddCommGroup E] [InnerProductSpace ℝ E]
open InnerProductSpace Set
variable {f : E → ℝ} {a : ℝ} {f' : E → E} {l : NNReal}
theorem lower_to_lipschitz (h₂ : ∀ x y, inner (f' x - f' y) (x - y) ≥ 1 / l * ‖f' x - f' y‖ ^ 2)
(hl : l > 0) : LipschitzWith l f' := by
rw [lipschitzWith_iff_norm_sub_le]
intro x y
have H₁ : (1 / l * ‖f' x - f' y‖) * ‖f' x - f' y‖ ≤ (1 / l * ‖f' x - f' y‖) * (l * ‖x - y‖) := by
calc
_ = 1 / l * ‖f' x - f' y‖ ^ 2 := by
simp
rw [mul_assoc, ← pow_two (‖f' x - f' y‖)]
_ ≤ ‖f' x - f' y‖ * ‖x - y‖ := by
apply le_trans (h₂ x y)
apply real_inner_le_norm
_ = (1 / l * ‖f' x - f' y‖) * (l * ‖x - y‖) := by
field_simp
ring_nf
have H₂ : 1 / l > 0 := by
apply one_div_pos.mpr hl
cases lt_or_ge 0 (‖f' x - f' y‖)
case inl h =>
apply le_of_mul_le_mul_left H₁
apply mul_pos _ h
· simp [H₂, hl]
case inr h =>
apply le_trans h
apply mul_nonneg
· simp [hl]
apply norm_nonneg _
end
section
variable {E : Type*} [NormedAddCommGroup E] [InnerProductSpace ℝ E] [CompleteSpace E]
open InnerProductSpace Set
variable {f : E → ℝ} {a : ℝ} {f' : E → E} {xm : E} {l : NNReal}
theorem lipschitz_continuos_upper_bound'
(h₁ : ∀ x₁ : E, HasGradientAt f (f' x₁) x₁) (h₂ : LipschitzWith l f') :
∀ x y : E, f y ≤ f x + inner (f' x) (y - x) + l / 2 * ‖y - x‖ ^ 2 := by
intro x y
rw [lipschitzWith_iff_norm_sub_le] at h₂
let g := fun x ↦ (toDual ℝ E) (f' x)
have h' : ∀ x : E, HasFDerivAt f (g x) x := h₁
have equiv : ∀ x y : E, inner (f' x) (y - x) = (g x) (y - x) := by
intro x y
rw [InnerProductSpace.toDual_apply]
have h₂' : LipschitzWith l g := by
simp only [g, equiv]
rw [lipschitzWith_iff_norm_sub_le]
intro x y
have h1 : ∀ x : E, ‖(toDual ℝ E) x‖ =‖x‖ := by
simp [LinearIsometryEquiv.norm_map]
have : ‖(toDual ℝ E) (f' x) - (toDual ℝ E) (f' y)‖ = ‖f' x - f' y‖ := by
rw [← map_sub (toDual ℝ E) (f' x) (f' y)]
exact h1 (f' x - f' y)
rw [this]
exact h₂ x y
rw [equiv]
exact lipschitz_continuous_upper_bound h' h₂' x y
theorem lipschitz_minima_lower_bound (h₁ : ∀ x : E, HasGradientAt f (f' x) x)
(h₂ : LipschitzWith l f') (min: IsMinOn f Set.univ xm) (hl : l > 0):
∀ x : E, 1 / (2 * l) * ‖f' x‖ ^ 2 ≤ f x - f xm := by
intro x
rw [IsMinOn, IsMinFilter] at min
simp at min
let y : E := x - ((1 : ℝ) / l : ℝ) • (f' x)
have eq : f xm ≤ f x - 1 / (2 * l) * ‖f' x‖ ^ 2 := by
calc
_ ≤ f y := by apply min
_ ≤ f x + inner (f' x) (y - x) + l / 2 * ‖y - x‖ ^ 2 := by
apply lipschitz_continuos_upper_bound' h₁ h₂
_ = f x - 1 / (2 * l) * ‖f' x‖ ^ 2 := by
rw [add_assoc]; rw [sub_eq_add_neg (f x), add_left_cancel_iff.2]
field_simp [y]; rw [← real_inner_self_eq_norm_sq, ← real_inner_self_eq_norm_sq]
rw [inner_smul_right, inner_smul_left, inner_smul_right]
field_simp; ring_nf
linarith
end
section Convex
variable {E : Type*} [NormedAddCommGroup E] [InnerProductSpace ℝ E] [CompleteSpace E]
variable {f : E → ℝ} {a : ℝ} {f': E → E} {xm : E}
variable {x y : E} {s v : Set E} {l : NNReal}
open Set
theorem lipschitz_to_lnorm_sub_convex (hs : Convex ℝ s)
(h₁ : ∀ x ∈ s, HasGradientAt f (f' x) x) (h₂ : LipschitzOnWith l f' s) (hl : l > 0) :
ConvexOn ℝ s (fun x ↦ l / 2 * ‖x‖ ^ 2 - f x) := by
rw [lipschitzOnWith_iff_norm_sub_le] at h₂
let g' : E → E := fun x ↦ l.1 • x - f' x
have H₂ : ∀ x ∈ s, ∀ y ∈ s, inner (g' x - g' y) (x - y) ≥ (0 : ℝ) := by
intro x hx y hy
calc
_ = l.1 * (inner (x - y) (x - y)) - inner (f' x - f' y) (x - y) := by
simp [g']
rw [← sub_add, sub_right_comm, sub_add, inner_sub_left, ← smul_sub, inner_smul_left]
simp only [conj_trivial]
_ = l * ‖x - y‖ ^ 2 - inner (f' x - f' y) (x - y) := by
simp; left
apply real_inner_self_eq_norm_sq
_ ≥ l * ‖x - y‖ ^ 2 - ‖f' x - f' y‖ * ‖x - y‖ := by
apply add_le_add; linarith
simp
apply real_inner_le_norm
_ ≥ l * ‖x - y‖ ^ 2 - l * ‖x - y‖ ^ 2 := by
simp
rw [pow_two, ← mul_assoc]
apply mul_le_mul (h₂ hx hy); linarith; apply norm_nonneg
apply mul_nonneg _ (norm_nonneg _)
simp [hl]
_ = 0 := by simp
have H₃ : ∀ x ∈ s, HasGradientAt (fun x ↦ l / 2 * ‖x‖ ^ 2 - f x) (g' x) x := by
intro x hx
have u₂ := HasGradientAt.const_smul (gradient_norm_sq_eq_two_self x) ((l / (2 : ℝ)) : ℝ)
have u := u₂.add (HasGradientAt.neg (h₁ x hx))
have l₁ : (fun x ↦ l / 2 * ‖x‖ ^ 2 + -f x) = (fun x ↦ l / 2 * ‖x‖ ^ 2 - f x) := by
ext; ring
have l₂ : (l.1 / 2) • (2 : ℝ) • x + -f' x = g' x := by
simp [g']; rw [smul_smul, ← sub_eq_add_neg]; ring_nf
rw [← l₁, ← l₂]
apply u
apply monotone_gradient_convex' hs
apply H₃
intro x hx y hy
exact H₂ x hx y hy
theorem convex_to_lower {l : ℝ} (h₁ : ∀ x : E, HasGradientAt f (f' x) x)
(h₂ : ConvexOn ℝ Set.univ (fun x ↦ l / 2 * ‖x‖ ^ 2 - f x)) (lp : l > 0)
(hfun: ConvexOn ℝ Set.univ f) (x : E) (y : E) :
inner (f' x - f' y) (x - y) ≥ 1 / l * ‖f' x - f' y‖ ^ 2 := by
rw [ConvexOn] at hfun
let fs : E → (E → ℝ) := fun s => (fun x => f x - inner (f' s) x)
have hfunconvex : ∀ s : E, ConvexOn ℝ Set.univ (fs s) := by
intro s
rw [ConvexOn]
simp
constructor
· apply hfun.1
· intro x₁ y₁ a b ha hb hab
have : f (a • x₁ + b • y₁) ≤ a * f x₁ + b * f y₁ := by
apply hfun.2 _ _ ha hb hab
simp; simp
simp [fs]
apply le_trans this
apply Eq.ge ; ring_nf
rw[inner_add_right, real_inner_smul_right, real_inner_smul_right]; ring
let fs' : E → (E → E) := fun s => (fun z ↦ f' z - f' s)
have hfconx₁: ∀ s x : E, HasGradientAt (fs s) (fs' s x) x := by
intro s z
apply HasGradientAt.sub
· rcases h₁ z with _
apply h₁
· apply gradient_of_inner_const z (f' s)
have hfy₁: ∀ x : E, HasGradientAt (fs y) (fs' y x) x := hfconx₁ y
have hfx₁: ∀ x₁ : E, HasGradientAt (fs x) (fs' x x₁) x₁ := hfconx₁ x
rw [ConvexOn] at h₂
let gs : E → (E → ℝ) := fun s ↦ (fun z ↦ l / 2 * ‖z‖ ^ 2 - (fs s) z)
have hgxconvex : ∀ s : E, ConvexOn ℝ Set.univ (gs s) := by
intro s; rw [ConvexOn]
constructor
· apply hfun.1
· intro x₁ hhx₁ y₁ hhy₁ a b ha hb hab
have h₂' : l / 2 * ‖a • x₁ + b • y₁‖ ^ 2 - f (a • x₁ + b • y₁) ≤
a • (l / 2 * ‖x₁‖ ^ 2 - f x₁) + b • (l / 2 * ‖y₁‖ ^ 2 - f y₁) := by
apply h₂.2 hhx₁ hhy₁ ha hb hab
simp only [smul_eq_mul, gs, fs]
rw [inner_add_right, real_inner_smul_right, real_inner_smul_right]
calc
_ = (l / 2) * ‖a • x₁ + b • y₁‖ ^ 2 - f (a • x₁ + b • y₁) +
(a * inner (f' s) x₁ + b * inner (f' s) y₁) := by ring_nf
_ ≤ a • (l / 2 * ‖x₁‖ ^ 2 - f x₁) + b • (l / 2 * ‖y₁‖ ^ 2 - f y₁) +
(a * inner (f' s) x₁ + b * inner (f' s) y₁) := by apply add_le_add_right h₂'
_ = a • (l / 2 * ‖x₁‖ ^ 2 - (f x₁ - inner (f' s) x₁)) + b •
(l / 2 * ‖y₁‖ ^ 2 - (f y₁ - inner (f' s) y₁)) := by simp; ring_nf
let gs' := fun s ↦ (fun z ↦ l • z - (fs' s z))
have hgx₁ : ∀ s x : E, HasGradientAt (gs s) ((gs' s) x) x := by
intro s z
apply HasGradientAt.sub (gradient_of_const_mul_norm l z) (hfconx₁ s z)
have hgx₂ : ∀ s z₁ z₂ : E, (gs s) z₁ + inner (gs' s z₁) (z₂ - z₁) ≤ gs s z₂ := by
intro s z₁ z₂
apply Convex_first_order_condition' (hgx₁ s z₁) (hgxconvex s)
· simp only [Set.mem_univ]
· simp only [Set.mem_univ]
have hfx₂ : ∀ (s x y₁ : E), (fs s) y₁ ≤ fs s x +
inner (fs' s x) (y₁ - x) + l / 2 * ‖y₁ - x‖ ^ 2 := by
intro s z₁ z₂
simp only [fs, fs']
rcases hgx₂ s z₁ z₂ with hgx₂'
have t₇ : gs s z₁ = l / 2 * ‖z₁‖ ^ 2 - fs s z₁ := by rfl
have t₈ : gs s z₂ = l / 2 * ‖z₂‖ ^ 2 - fs s z₂ := by rfl
have t₉ : gs' s z₁ = l • z₁ - fs' s z₁ := by rfl
rw [t₇, t₈, t₉] at hgx₂'
have t₁₀ : fs s z₂ + (l / 2 * ‖z₁‖ ^ 2 - fs s z₁ + inner (l • z₁ - fs' s z₁) (z₂ - z₁))
≤ l / 2 * ‖z₂‖ ^ 2 := by
apply add_le_of_le_sub_left hgx₂'
have t₁₁ : fs s z₂ ≤ l / 2 * ‖z₂‖ ^ 2 - (l / 2 * ‖z₁‖ ^ 2 - fs s z₁ +
inner (l • z₁ - fs' s z₁) (z₂ - z₁)) := by
rw [add_comm] at t₁₀
apply le_sub_left_of_add_le t₁₀
simp only [] at t₁₁; rw [← sub_add (l / 2 * ‖z₁‖ ^ 2) _ _] at t₁₁
calc
_ ≤ l / 2 * ‖z₂‖ ^ 2 - (l / 2 * ‖z₁‖ ^ 2 - f z₁ +
inner (f' s) z₁ + inner (l • z₁ - fs' s z₁) (z₂ - z₁)) := by apply t₁₁
_ = l / 2 * ‖z₂‖ ^ 2 -(l / 2 * ‖z₁‖ ^ 2 - f z₁ + inner (f' s) z₁ +
(l * (inner z₁ z₂ - ‖z₁‖ ^ 2) - inner (f' z₁ - f' s) (z₂ - z₁))) := by
rw [inner_sub_left, inner_smul_left]
simp; rw [inner_sub_right, real_inner_self_eq_norm_sq];left ; simp
_ = f z₁ - inner (f' s) z₁ + inner (f' z₁ - f' s) (z₂ - z₁) +
l / 2 * (‖z₂‖ ^ 2 - 2 * inner z₂ z₁ + ‖z₁‖ ^ 2) := by
field_simp; ring_nf; rw [real_inner_comm]
_ = f z₁ - inner (f' s) z₁ + inner (f' z₁ - f' s) (z₂ - z₁) + l / 2 * ‖z₂ - z₁‖ ^ 2 := by
rw [← norm_sub_sq_real]
have hfs₃ : ∀ s : E, IsMinOn (fs s) univ s := by
intro s
apply first_order_convex (hfconx₁ s) (hfunconvex s)
simp only [fs, fs', sub_self]
have hfy₃ : IsMinOn (fs y) _ y := hfs₃ y
have hfx₄ : fs x x ≤ fs x y - 1 / (2 * l) * ‖fs' x y‖ ^ 2 := by
have : fs x x ≤ fs x (y - (1 / l) • fs' x y) := by
rcases hfs₃ x with hf3'
rw[isMinOn_iff] at hf3'
apply hf3'
simp
apply le_trans this
rcases hfx₂ x y (y - (1 / l) • fs' x y) with hfx₂'
calc
_ ≤ fs x y + inner (fs' x y) (y - (1 / l) • fs' x y - y)
+ l / 2 * ‖y - (1 / l) • fs' x y - y‖ ^ 2 := by apply hfx₂'
_ = fs x y - 1 / (2 * l) * ‖fs' x y‖ ^ 2 := by
have : y - (1 / l) • fs' x y - y = - (1 / l) • fs' x y := by simp
rw [this, real_inner_smul_right]
repeat rw [← real_inner_self_eq_norm_sq, ← real_inner_self_eq_norm_sq]
rw [real_inner_smul_right, real_inner_smul_left]; field_simp; ring
have hfy₄ : fs y y ≤ fs y x - 1 / (2 * l) * ‖fs' y x‖ ^ 2 := by
have : fs y y ≤ fs y (x - (1 / l) • fs' y x) := by
rw [isMinOn_iff] at hfy₃
rcases hfy₃ (x - (1 / l) • fs' y x) with hfy₃'
apply hfy₃'
simp
apply le_trans this
rcases hfx₂ y x (x - (1 / l) • fs' y x) with hfy₂'
calc
_ ≤ fs y x + inner (fs' y x) (x - (1 / l) • fs' y x - x)
+ l / 2 * ‖x - (1 / l) • fs' y x - x‖ ^ 2 := by apply hfy₂'
_ = fs y x - 1 / (2 * l) * ‖fs' y x‖ ^ 2 := by
have : x - (1 / l) • fs' y x - x = - (1 / l) • fs' y x := by simp
rw [this, real_inner_smul_right]
rw [← real_inner_self_eq_norm_sq, ← real_inner_self_eq_norm_sq, real_inner_smul_right]
rw [real_inner_smul_left]; field_simp; ring
have hh₁: (1 / (2 * l)) * ‖f' x - f' y‖ ^ 2 ≤ f y - f x - inner (f' x) (y - x) := by
calc
(1 / (2 * l)) * ‖f' x - f' y‖ ^ 2 ≤ fs x y - fs x x := by
have : f' x - f' y = - fs' x y := by
have : fs' x y = f' y - f' x := by rfl
rw [this]; simp
rw [this]
have : ‖- fs' x y‖ = ‖fs' x y‖ :=by apply norm_neg
rw [this]
linarith [hfx₄]
_ = f y - f x - inner (f' x) (y - x) := by
have t₄: fs x y = f y - inner (f' x) y := by rfl
have t₅: fs x x = f x - inner (f' x) x := by rfl
rw [t₄,t₅,inner_sub_right]
ring
have hh₂: (1 / (2 * l)) * ‖f' x - f' y‖ ^ 2 ≤ f x - f y - inner (f' y) (x - y) := by
calc
(1 / (2 * l)) * ‖f' x - f' y‖ ^ 2 ≤ fs y x -fs y y := by
have : f' x - f' y = fs' y x := by simp
rw [this]
linarith [hfy₄]
_ = f x - f y - inner (f' y) (x - y) := by
have t₄' : fs y y = f y - inner (f' y) y := by rfl
have t₅' : fs y x = f x - inner (f' y) x := by rfl
rw [t₄', t₅', inner_sub_right]
ring
calc
_ = (1 / (2 * l)) * ‖f' x - f' y‖ ^ 2 + (1 / (2 * l)) * ‖f' x - f' y‖ ^ 2 := by
field_simp
rw [← mul_two,mul_comm]
ring
_ ≤ (f y - f x - inner (f' x) (y - x)) + (f x - f y - inner (f' y) (x - y)) := by
apply add_le_add hh₁ hh₂
_ = inner (f' x - f' y) (x - y) := by
rw [inner_sub_left]
have t₆ : (inner (f' x) (y - x) : ℝ) = - (inner (f' x) (x - y) : ℝ) := by
rw [inner_sub_right, inner_sub_right]; ring
rw[t₆]; ring
theorem lipschitz_to_lower (h₁ : ∀ x, HasGradientAt f (f' x) x) (h₂ : LipschitzWith l f')
(hfun : ConvexOn ℝ Set.univ f) (hl : l > 0) :
∀ x y, inner (f' x - f' y) (x - y) ≥ 1 / l * ‖f' x - f' y‖ ^ 2 := by
obtain convex : ConvexOn ℝ Set.univ (fun x ↦ l / 2 * ‖x‖ ^ 2 - f x) :=
lipschitz_to_lnorm_sub_convex convex_univ (fun x _ => h₁ x) (lipschitzOnWith_univ.mpr h₂) hl
exact convex_to_lower h₁ convex hl hfun
theorem lower_iff_lipschitz (h₁ : ∀ x, HasGradientAt f (f' x) x) (hfun: ConvexOn ℝ Set.univ f)
(hl : l > 0) : LipschitzWith l f' ↔
∀ x y, inner (f' x - f' y) (x - y) ≥ 1 / l * ‖f' x - f' y‖ ^ 2 :=
⟨fun h ↦ lipschitz_to_lower h₁ h hfun hl, fun h ↦ lower_to_lipschitz h hl⟩
theorem lipshictz_iff_lnorm_sub_convex (h₁ : ∀ x, HasGradientAt f (f' x) x)
(hfun: ConvexOn ℝ Set.univ f) (hl : l > 0) : LipschitzWith l f' ↔
ConvexOn ℝ univ (fun x ↦ l / 2 * ‖x‖ ^ 2 - f x) := by
constructor
· intro h
exact lipschitz_to_lnorm_sub_convex convex_univ (fun x _ ↦ h₁ x) (fun x _ y _ => h x y) hl
intro h'
rw [lower_iff_lipschitz h₁ hfun hl]
exact fun x y => convex_to_lower h₁ h' hl hfun x y
theorem lower_iff_lnorm_sub_convex (h₁ : ∀ x, HasGradientAt f (f' x) x)
(hfun: ConvexOn ℝ Set.univ f) (hl : l > 0) : ConvexOn ℝ univ (fun x ↦ l / 2 * ‖x‖ ^ 2 - f x)
↔ ∀ x y, inner (f' x - f' y) (x - y) ≥ 1 / l * ‖f' x - f' y‖ ^ 2 := by
rw [← lipshictz_iff_lnorm_sub_convex h₁ hfun hl]
rw [lower_iff_lipschitz h₁ hfun hl]
end Convex