Exists unit Ball cutoff
DeGiorgi.exists_unitBall_cutoff
Plain-language statement
Smooth cutoff: φ = 1 on closedBall 0 1, tsupport ⊆ ball 0 (7/6), range ⊆ [0,1]. Used for the log gradient bound on rescaled cover balls.
Exact Lean statement
lemma exists_unitBall_cutoff :
∃ (φ : E → ℝ),
ContDiff ℝ (⊤ : ℕ∞) φ ∧
HasCompactSupport φ ∧
tsupport φ ⊆ Metric.ball (0 : E) (7 / 6 : ℝ) ∧
(∀ x ∈ Metric.closedBall (0 : E) 1, φ x = 1) ∧
Set.range φ ⊆ Set.Icc (0 : ℝ) 1Formal artifact
Lean source
lemma exists_unitBall_cutoff : ∃ (φ : E → ℝ), ContDiff ℝ (⊤ : ℕ∞) φ ∧ HasCompactSupport φ ∧ tsupport φ ⊆ Metric.ball (0 : E) (7 / 6 : ℝ) ∧ (∀ x ∈ Metric.closedBall (0 : E) 1, φ x = 1) ∧ Set.range φ ⊆ Set.Icc (0 : ℝ) 1 := by have hK : IsCompact (Metric.closedBall (0 : E) 1) := isCompact_closedBall 0 1 have hΩ : IsOpen (Metric.ball (0 : E) (7 / 6 : ℝ)) := isOpen_ball have hKΩ : Metric.closedBall (0 : E) 1 ⊆ Metric.ball (0 : E) (7 / 6 : ℝ) := Metric.closedBall_subset_ball (by norm_num : (1 : ℝ) < 7 / 6) obtain ⟨δ, hδ_pos, hδΩ⟩ := hK.exists_cthickening_subset_open hΩ hKΩ rcases exists_contMDiff_support_eq_eq_one_iff (I := modelWithCornersSelf ℝ E) (s := Metric.thickening δ (Metric.closedBall (0 : E) 1)) (t := Metric.closedBall (0 : E) 1) isOpen_thickening isClosed_closedBall (self_subset_thickening hδ_pos (Metric.closedBall (0 : E) 1)) with ⟨η, hη_smooth, hη_range, hη_support, hη_one_iff⟩ refine ⟨η, contMDiff_iff_contDiff.mp hη_smooth, ?_, ?_, ?_, hη_range⟩ · apply HasCompactSupport.intro' (K := Metric.cthickening δ (Metric.closedBall (0 : E) 1)) · exact (isCompact_closedBall 0 1).cthickening (r := δ) · exact isClosed_cthickening · intro x hx have hxt : x ∉ tsupport η := by intro hxt have hx_closure : x ∈ closure (Metric.thickening δ (Metric.closedBall (0 : E) 1)) := by rw [tsupport, hη_support] at hxt; exact hxt exact hx (Metric.closure_thickening_subset_cthickening δ _ hx_closure) exact image_eq_zero_of_notMem_tsupport hxt · rw [tsupport, hη_support] exact (Metric.closure_thickening_subset_cthickening δ _).trans hδΩ · intro x hx; exact (hη_one_iff x).1 hx- Project
- DeGiorgi
- License
- Apache-2.0
- Commit
- 4c1b3077d378
- Source
- DeGiorgi/Crossover/ExponentialIntegrability.lean:31-62
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.