Weak Problem RHSOf Field And Datum bound
DeGiorgi.weakProblemRHSOfFieldAndDatum_bound
Plain-language statement
The shifted raw RHS is bounded on H₀¹(Ω) with respect to the L² gradient seminorm.
Exact Lean statement
theorem weakProblemRHSOfFieldAndDatum_bound
{Ω : Set E} (hΩ : IsOpen Ω)
(A : EllipticCoeff d Ω)
{F : E → E} (hF : MemLp F 2 (volume.restrict Ω))
{u₀ : E → ℝ} (hu₀ : MemW1pWitness 2 u₀ Ω)
(v : E → ℝ) (hv0 : MemH01 v Ω) (hv : MemW1pWitness 2 v Ω) :
|weakProblemRHSOfFieldAndDatum (A := A) (Ω := Ω) F hu₀ v| ≤
((∫ x, ‖F x‖ ^ (2 : ℝ) ∂(volume.restrict Ω)) ^ (1 / (2 : ℝ)) +
A.Λ * (∫ x, ‖hu₀.weakGrad x‖ ^ (2 : ℝ) ∂(volume.restrict Ω)) ^ (1 / (2 : ℝ))) *
(∫ x, ‖hv.weakGrad x‖ ^ (2 : ℝ) ∂(volume.restrict Ω)) ^ (1 / (2 : ℝ))Formal artifact
Lean source
theorem weakProblemRHSOfFieldAndDatum_bound {Ω : Set E} (hΩ : IsOpen Ω) (A : EllipticCoeff d Ω) {F : E → E} (hF : MemLp F 2 (volume.restrict Ω)) {u₀ : E → ℝ} (hu₀ : MemW1pWitness 2 u₀ Ω) (v : E → ℝ) (hv0 : MemH01 v Ω) (hv : MemW1pWitness 2 v Ω) : |weakProblemRHSOfFieldAndDatum (A := A) (Ω := Ω) F hu₀ v| ≤ ((∫ x, ‖F x‖ ^ (2 : ℝ) ∂(volume.restrict Ω)) ^ (1 / (2 : ℝ)) + A.Λ * (∫ x, ‖hu₀.weakGrad x‖ ^ (2 : ℝ) ∂(volume.restrict Ω)) ^ (1 / (2 : ℝ))) * (∫ x, ‖hv.weakGrad x‖ ^ (2 : ℝ) ∂(volume.restrict Ω)) ^ (1 / (2 : ℝ)) := by let CF : ℝ := (∫ x, ‖F x‖ ^ (2 : ℝ) ∂(volume.restrict Ω)) ^ (1 / (2 : ℝ)) let CU : ℝ := A.Λ * (∫ x, ‖hu₀.weakGrad x‖ ^ (2 : ℝ) ∂(volume.restrict Ω)) ^ (1 / (2 : ℝ)) let GV : ℝ := (∫ x, ‖hv.weakGrad x‖ ^ (2 : ℝ) ∂(volume.restrict Ω)) ^ (1 / (2 : ℝ)) rw [weakProblemRHSOfFieldAndDatum_eq_of_memH01 hΩ A hu₀ hv0 hv] have hdiv : |divergenceRHSOfField F hv| ≤ CF * GV := by simpa [CF, GV] using divergenceRHSOfField_bound hF hv have hbilin : |bilinFormOfCoeff A hu₀ hv| ≤ CU * GV := by simpa [CU, GV, mul_assoc] using bilinForm_bound A hu₀ hv calc |divergenceRHSOfField F hv - bilinFormOfCoeff A hu₀ hv| = |divergenceRHSOfField F hv + (-bilinFormOfCoeff A hu₀ hv)| := by ring_nf _ ≤ |divergenceRHSOfField F hv| + |-bilinFormOfCoeff A hu₀ hv| := abs_add_le _ _ _ = |divergenceRHSOfField F hv| + |bilinFormOfCoeff A hu₀ hv| := by simp _ ≤ CF * GV + CU * GV := add_le_add hdiv hbilin _ = (CF + CU) * GV := by ring _ = ((∫ x, ‖F x‖ ^ (2 : ℝ) ∂(volume.restrict Ω)) ^ (1 / (2 : ℝ)) + A.Λ * (∫ x, ‖hu₀.weakGrad x‖ ^ (2 : ℝ) ∂(volume.restrict Ω)) ^ (1 / (2 : ℝ))) * (∫ x, ‖hv.weakGrad x‖ ^ (2 : ℝ) ∂(volume.restrict Ω)) ^ (1 / (2 : ℝ)) := by rfl- Project
- DeGiorgi
- License
- Apache-2.0
- Commit
- 4c1b3077d378
- Source
- DeGiorgi/WeakFormulation/BilinearForm.lean:583-614
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.