Commit e92bd21
feat: complete proof of Lemma 8.0.1 (#278)
I've also made a few changes throughout the files to get the right
statement of Lemma 8.0.1:
* instead of the norms `iLipNorm` (Lipschitz) and `hnorm` (Hölder), we
now have versions defined using sups in ENNReal, called `iLipENorm` and
`iHolENorm`, and their images in NNReal called `iLipNNNorm` and
`iHolNNNorm`.
* The definition of the Hölder norm has been fixed. It used to be
```lean
⨆ (x ∈ ball x₀ R), (‖ϕ x‖₊ : ℝ≥0∞) +
R ^ τ * ⨆ (x ∈ ball x₀ R) (y ∈ ball x₀ R) (_ : x ≠ y), (‖ϕ x - ϕ y‖₊ / (nndist x y) ^ τ : ℝ≥0∞)
```
where the second sup was included in the first sup because of the lack
of parentheses.
* The definition of the class `IsCancellative` has been fixed: it
required the test function to be globally Lipschitz, while the right
condition is Lipschitz on a ball
* With the change of `IsCancellative`, the proof that it is satisfied on
the real line becomes harder. I had to change a little bit the Lean
statement and proof of the classical Van der Corput lemma (requiring
only a Lipschitz function on a ball) -- now it matches the statement in
the blueprint.
* I have streamlined the proof of `IsCancellative` on the real line,
using new API around the Lipschitz and Hölder norms
* For doubling measures, I have added the statement
```lean
lemma measure_ball_le_same'' (x : X) {r t : ℝ} (ht : 0 < t) (h't : t ≤ 1) :
μ.real (ball x r) ≤ A * t ^ (- Real.logb 2 A) * μ.real (ball x (t * r))
```
Once this is established, this avoids juggling with powers of 2 in the
proof of Lemma 8.0.1. I don't know if there are other places in the
files where it could be used to streamline arguments.
* Use enorm instead of the coercion of nnnorm wherever I've noticed it
I can split in in smaller PRs if you prefer.
---------
Co-authored-by: Floris van Doorn <fpvdoorn@gmail.com>1 parent 568cd95 commit e92bd21
File tree
11 files changed
+731
-276
lines changed- Carleson
- Antichain
- Classical
- ForestOperator
- ToMathlib
- Topology/Algebra
- blueprint/src/chapter
11 files changed
+731
-276
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
38 | 38 | | |
39 | 39 | | |
40 | 40 | | |
41 | | - | |
| 41 | + | |
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
| 45 | + | |
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
52 | 52 | | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
53 | 66 | | |
54 | 67 | | |
55 | 68 | | |
56 | | - | |
| 69 | + | |
57 | 70 | | |
58 | 71 | | |
59 | | - | |
| 72 | + | |
60 | 73 | | |
61 | | - | |
62 | | - | |
| 74 | + | |
63 | 75 | | |
64 | | - | |
65 | | - | |
| 76 | + | |
66 | 77 | | |
67 | | - | |
68 | | - | |
69 | | - | |
70 | | - | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
71 | 82 | | |
72 | | - | |
| 83 | + | |
73 | 84 | | |
74 | | - | |
| 85 | + | |
75 | 86 | | |
76 | | - | |
77 | | - | |
78 | | - | |
79 | | - | |
80 | | - | |
81 | | - | |
82 | | - | |
83 | | - | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
84 | 93 | | |
85 | 94 | | |
86 | | - | |
| 95 | + | |
87 | 96 | | |
88 | 97 | | |
89 | 98 | | |
90 | | - | |
91 | | - | |
92 | | - | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
93 | 102 | | |
94 | 103 | | |
95 | 104 | | |
| |||
101 | 110 | | |
102 | 111 | | |
103 | 112 | | |
104 | | - | |
| 113 | + | |
105 | 114 | | |
106 | 115 | | |
107 | 116 | | |
| |||
175 | 184 | | |
176 | 185 | | |
177 | 186 | | |
178 | | - | |
| 187 | + | |
179 | 188 | | |
180 | 189 | | |
181 | | - | |
182 | | - | |
183 | | - | |
184 | | - | |
| 190 | + | |
| 191 | + | |
| 192 | + | |
185 | 193 | | |
186 | | - | |
| 194 | + | |
| 195 | + | |
| 196 | + | |
| 197 | + | |
187 | 198 | | |
188 | 199 | | |
189 | 200 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
388 | 388 | | |
389 | 389 | | |
390 | 390 | | |
| 391 | + | |
391 | 392 | | |
392 | 393 | | |
393 | 394 | | |
394 | 395 | | |
395 | | - | |
396 | | - | |
397 | | - | |
| 396 | + | |
| 397 | + | |
| 398 | + | |
398 | 399 | | |
399 | | - | |
400 | 400 | | |
401 | 401 | | |
402 | 402 | | |
403 | 403 | | |
404 | | - | |
405 | | - | |
406 | | - | |
407 | | - | |
408 | | - | |
409 | | - | |
410 | | - | |
411 | 404 | | |
412 | 405 | | |
413 | 406 | | |
| |||
416 | 409 | | |
417 | 410 | | |
418 | 411 | | |
419 | | - | |
| 412 | + | |
| 413 | + | |
420 | 414 | | |
421 | 415 | | |
422 | | - | |
423 | | - | |
424 | | - | |
425 | | - | |
426 | | - | |
427 | | - | |
428 | | - | |
429 | | - | |
430 | | - | |
431 | | - | |
432 | | - | |
433 | | - | |
434 | | - | |
435 | | - | |
436 | | - | |
437 | | - | |
438 | | - | |
439 | | - | |
440 | | - | |
441 | | - | |
442 | | - | |
443 | | - | |
444 | | - | |
445 | | - | |
446 | | - | |
447 | | - | |
448 | | - | |
449 | | - | |
450 | | - | |
451 | | - | |
452 | | - | |
453 | | - | |
454 | | - | |
455 | | - | |
456 | | - | |
457 | | - | |
458 | | - | |
459 | | - | |
460 | | - | |
461 | | - | |
462 | | - | |
463 | | - | |
464 | | - | |
465 | | - | |
466 | | - | |
467 | | - | |
468 | | - | |
469 | | - | |
470 | | - | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
| 419 | + | |
| 420 | + | |
| 421 | + | |
| 422 | + | |
| 423 | + | |
471 | 424 | | |
472 | | - | |
| 425 | + | |
| 426 | + | |
| 427 | + | |
| 428 | + | |
| 429 | + | |
| 430 | + | |
473 | 431 | | |
474 | 432 | | |
475 | | - | |
476 | 433 | | |
477 | 434 | | |
478 | | - | |
479 | | - | |
480 | | - | |
481 | | - | |
482 | 435 | | |
483 | 436 | | |
484 | 437 | | |
| |||
0 commit comments