Exists finite inner ball cover
DeGiorgi.exists_finite_inner_ball_cover
Plain-language statement
A compact inner ball can be covered by finitely many smaller balls whose dilated closed balls still lie inside the ambient ball.
Exact Lean statement
theorem exists_finite_inner_ball_cover
{d : ℕ} [NeZero d]
{x₀ : EuclideanSpace ℝ (Fin d)}
{r ρ R : ℝ}
(_hr : 0 < r)
(hρ : 0 < ρ)
(hbuffer : r + 2 * ρ < R) :
∃ t : Finset (EuclideanSpace ℝ (Fin d)),
(∀ c ∈ t, c ∈ Metric.closedBall x₀ r) ∧
Metric.closedBall x₀ r ⊆ ⋃ c ∈ t, Metric.ball c ρ ∧
(∀ c ∈ t, Metric.closedBall c (2 * ρ) ⊆ Metric.ball x₀ R)Formal artifact
Lean source
theorem exists_finite_inner_ball_cover {d : ℕ} [NeZero d] {x₀ : EuclideanSpace ℝ (Fin d)} {r ρ R : ℝ} (_hr : 0 < r) (hρ : 0 < ρ) (hbuffer : r + 2 * ρ < R) : ∃ t : Finset (EuclideanSpace ℝ (Fin d)), (∀ c ∈ t, c ∈ Metric.closedBall x₀ r) ∧ Metric.closedBall x₀ r ⊆ ⋃ c ∈ t, Metric.ball c ρ ∧ (∀ c ∈ t, Metric.closedBall c (2 * ρ) ⊆ Metric.ball x₀ R) := by obtain ⟨t, ht_mem, hcover⟩ := (isCompact_closedBall x₀ r).elim_nhds_subcover (fun x => Metric.ball x ρ) (fun x hx => Metric.ball_mem_nhds x hρ) have hbuffer' : 2 * ρ + r < R := by simpa [add_comm, add_left_comm, add_assoc] using hbuffer refine ⟨t, ht_mem, hcover, ?_⟩ intro c hc x hx have hc' : dist c x₀ ≤ r := by simpa using ht_mem c hc have hx' : dist x c ≤ 2 * ρ := by simpa using hx refine Metric.mem_ball.2 ?_ calc dist x x₀ ≤ dist x c + dist c x₀ := dist_triangle _ _ _ _ ≤ 2 * ρ + r := by linarith _ < R := hbuffer'- Project
- DeGiorgi
- License
- Apache-2.0
- Commit
- 4c1b3077d378
- Source
- DeGiorgi/FiniteCover.lean:104-131
Reuse this declaration
Bring the exact result into your workflow
The import identifies the source module. Your project still needs the pinned package dependency shown on this page.
What this badge means
This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.
Continue in this project
Related declarations
Ae eq of tendsto e Lp Norm sub
BareFunction.ae_eq_of_tendsto_eLpNorm_sub
Plain-language statement
Lp limit uniqueness: if f_n → g₁ and f_n → g₂ in eLpNorm, then g₁ =ᵐ g₂.
Source project: DeGiorgi
Person-level attribution pending.
E Lp Norm pi le sum component
BareFunction.eLpNorm_pi_le_sum_component
Plain-language statement
Vector eLpNorm ≤ sum of component eLpNorms for Pi-valued functions. Uses eLpNorm_mono_real for the pointwise bound together with eLpNorm_sum_le for ℝ-valued functions, avoiding Pi instance synthesis.
Source project: DeGiorgi
Person-level attribution pending.
Mem Lp of tendsto e Lp Norm
BareFunction.memLp_of_tendsto_eLpNorm
Plain-language statement
If f n → g in eLpNorm and each f n ∈ Lp, then g ∈ Lp, provided g is AEStronglyMeasurable. Avoids the Lp type entirely. The key observation: eLpNorm (f n - g) → 0 means eLpNorm (f N - g) < 1 for some N. Then eLpNorm g ≤ eLpNorm (f N - g) + eLpNorm (f N) < ∞.
Source project: DeGiorgi
Person-level attribution pending.