Plain-language statement
H₀¹(Ω) is closed under scalar multiplication.
Exact Lean statement
theorem MemW01p.smul
{Ω : Set E} {u : E → ℝ} (c : ℝ)
(hu : MemW01p 2 u Ω) :
MemW01p 2 (fun x => c * u x) ΩFormal artifact
Lean source
theorem MemW01p.smul {Ω : Set E} {u : E → ℝ} (c : ℝ) (hu : MemW01p 2 u Ω) : MemW01p 2 (fun x => c * u x) Ω := by let _ := (inferInstance : NeZero d) rcases hu with ⟨_, hwu, φ, hφ_smooth, hφ_compact, hφ_sub, hφ_fun, hφ_grad⟩ refine ⟨(hwu.smul c).memW1p, hwu.smul c, fun n x => c * φ n x, ?_, ?_, ?_, ?_, ?_⟩ · intro n simpa [smul_eq_mul] using (contDiff_const.mul (hφ_smooth n)) · intro n simpa [Pi.smul_apply, smul_eq_mul] using (hφ_compact n).smul_left (f := fun _ : E => c) · intro n simpa [Pi.smul_apply, smul_eq_mul] using (tsupport_smul_subset_right (fun _ : E => c) (φ n)).trans (hφ_sub n) · have hscaled : Tendsto (fun n => ‖c‖ₑ * eLpNorm (fun x => φ n x - u x) 2 (volume.restrict Ω)) atTop (nhds (‖c‖ₑ * 0)) := ENNReal.Tendsto.const_mul hφ_fun (Or.inr ENNReal.coe_ne_top) have hEq : (fun n => eLpNorm (fun x => c * φ n x - c * u x) 2 (volume.restrict Ω)) = (fun n => ‖c‖ₑ * eLpNorm (fun x => φ n x - u x) 2 (volume.restrict Ω)) := by funext n have hfun : (fun x => c * φ n x - c * u x) = c • (fun x => φ n x - u x) := by ext x simp [Pi.smul_apply, smul_eq_mul] ring rw [hfun, eLpNorm_const_smul] rw [hEq] simpa using hscaled · intro i have hscaled : Tendsto (fun n => ‖c‖ₑ * eLpNorm (fun x => (fderiv ℝ (φ n) x) (EuclideanSpace.single i 1) - hwu.weakGrad x i) 2 (volume.restrict Ω)) atTop (nhds (‖c‖ₑ * 0)) := ENNReal.Tendsto.const_mul (hφ_grad i) (Or.inr ENNReal.coe_ne_top) have hEq : (fun n => eLpNorm (fun x => (fderiv ℝ (fun y => c * φ n y) x) (EuclideanSpace.single i 1) - (hwu.smul c).weakGrad x i) 2 (volume.restrict Ω)) = (fun n => ‖c‖ₑ * eLpNorm (fun x => (fderiv ℝ (φ n) x) (EuclideanSpace.single i 1) - hwu.weakGrad x i) 2 (volume.restrict Ω)) := by funext n have hfun : (fun x => (fderiv ℝ (fun y => c * φ n y) x) (EuclideanSpace.single i 1) - (hwu.smul c).weakGrad x i) = c • (fun x => (fderiv ℝ (φ n) x) (EuclideanSpace.single i 1) - hwu.weakGrad x i) := by ext x have hfd : fderiv ℝ (fun y => c * φ n y) x = c • fderiv ℝ (φ n) x := by simpa [smul_eq_mul] using congrFun (fderiv_const_smul_field (𝕜 := ℝ) (f := φ n) c) x simp [MemW1pWitness.smul, Pi.smul_apply, smul_eq_mul, hfd] ring rw [hfun, eLpNorm_const_smul] rw [hEq] simpa using hscaled- Project
- DeGiorgi
- License
- Apache-2.0
- Commit
- 4c1b3077d378
- Source
- DeGiorgi/SobolevSpace/Witnesses.lean:443-512
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.