Skip to main content
fpvandoorn/carleson
Source indexedlemma ยท leanprover/lean4:v4.32.0

Tile.volume_coeGrid_le

Carleson.Antichain.TileCorrelation ยท Carleson/Antichain/TileCorrelation.lean:414 to 429

Source documentation

Inequality (6.2.32).

Exact Lean statement

lemma volume_coeGrid_le {p : ๐”“ X} (x2 : E p) :
    volume (๐“˜ p : Set X) โ‰ค 2 ^ (3 * a) * volume (ball x2.1 (D ^ ๐”ฐ p))

Complete declaration

Lean source

Canonical source
Full Lean sourceLean 4
lemma volume_coeGrid_le {p : ๐”“ X} (x2 : E p) :    volume (๐“˜ p : Set X) โ‰ค 2 ^ (3 * a) * volume (ball x2.1 (D ^ ๐”ฐ p)) := by  -- Inequality 6.2.30  have hdist : dist (๐”  p) x2 < 4 * D ^ ๐”ฐ p :=    dist_comm (๐”  p) x2 โ–ธ Grid_subset_ball (mem_of_subset_of_mem (fun _ ha โ†ฆ ha.1) x2.prop)  -- Inclusion 6.2.31  have hsub : (๐“˜ p : Set X) โІ ball x2 (8 * D ^ ๐”ฐ p) := by    refine Grid_subset_ball.trans fun x hx โ†ฆ ?_    calc      _ โ‰ค dist x (๐”  p) + dist (๐”  p) x2 := dist_triangle ..      _ < 4 * D ^ ๐”ฐ p + 4 * D ^ ๐”ฐ p := add_lt_add hx hdist      _ = _ := by ring  apply (measure_mono hsub).trans  rw [show (8 : โ„) = 2 ^ 3 by norm_num]  convert! measure_ball_two_le_same_iterate (ฮผ := volume) x2.1 (D ^ ๐”ฐ p) 3 using 2  rw [mul_comm 3, pow_mul]; simp