All proofs
Project-declaredLean 4.29.0-rc6 · mathlib@5c8398df5281

Mixed bound

DeGiorgi.EllipticCoeff.mixed_bound

Plain-language statement

Mixed bilinear bound needed by the variational branch.

Exact Lean statement

theorem mixed_bound :
    ∀ᵐ x ∂(MeasureTheory.volume.restrict Ω), ∀ ξ ζ : AmbientSpace d,
      |⟪ζ, matMulE (A.a x) ξ⟫_ℝ| ≤ A.Λ * ‖ζ‖ * ‖ξ‖

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem mixed_bound :    ᵐ x ∂(MeasureTheory.volume.restrict Ω),  ξ ζ : AmbientSpace d,      |⟪ζ, matMulE (A.a x) ξ⟫_|  A.Λ * ‖ζ‖ * ‖ξ‖ := by  filter_upwards [A.mulVec_sq_le, A.quadratic_upper] with x hx_mul hx_quad  intro ξ ζ  let m :  := ‖matMulE (A.a x) ξ‖  let nξ :  := ‖ξ‖  let nζ :  := ‖ζ‖  have habs : |⟪ζ, matMulE (A.a x) ξ⟫_| * m := by    simpa [m, nζ, mul_comm] using abs_real_inner_le_norm ζ (matMulE (A.a x) ξ)  have hm_sq : m ^ 2  A.Λ * ⟪ξ, matMulE (A.a x) ξ⟫_ := by    simpa [m] using hx_mul ξ  have hq_upper :      ⟪ξ, matMulE (A.a x) ξ⟫_  A.Λ *^ 2 := by    simpa [nξ] using hx_quad ξ  have hm_le : m  A.Λ *:= by    have hm_nonneg : 0  m := norm_nonneg (matMulE (A.a x) ξ)    have hnξ_nonneg : 0 := norm_nonneg ξ    have hrhs_nonneg : 0  A.Λ *:= mul_nonneg A.Λ_nonneg hnξ_nonneg    have hm_sq_upper : m ^ 2  (A.Λ * nξ) ^ 2 := by      nlinarith [hm_sq, hq_upper, A.Λ_nonneg]    exact (sq_le_sq₀ hm_nonneg hrhs_nonneg).1 hm_sq_upper  have hnζ_nonneg : 0 := norm_nonneg ζ  calc    |⟪ζ, matMulE (A.a x) ξ⟫_| * m := habs    _ * (A.Λ * nξ) := by      exact mul_le_mul_of_nonneg_left hm_le hnζ_nonneg    _ = A.Λ * ‖ζ‖ * ‖ξ‖ := by      ring
Project
DeGiorgi
License
Apache-2.0
Commit
4c1b3077d378
Source
DeGiorgi/EllipticCoefficients.lean:218-246

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

Project-declaredLean 4.29.0-rc6

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₂.

partial differential equationsregularity theoryanalysis

Source project: DeGiorgi

Person-level attribution pending.

View proof record
Project-declaredLean 4.29.0-rc6

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.

partial differential equationsregularity theoryanalysis

Source project: DeGiorgi

Person-level attribution pending.

View proof record
Project-declaredLean 4.29.0-rc6

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) < ∞.

partial differential equationsregularity theoryanalysis

Source project: DeGiorgi

Person-level attribution pending.

View proof record