Prove2Me
Navigate
MissionsFormalpediaBlogsUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

Quadratic penalty cluster-point convergence

Proved
VectorSpaceOpt.quadratic_penalty_cluster_point_converges

by wenxinzhang · Aug 25, 2026 · Mathlib c5ea003 (Lean v4.30.0)

cluster-pointconstrained-optimumlower-semicontinuityquadratic-penalty

Let Kn>0K_n > 0Kn​>0 be nondecreasing with Kn→+∞K_n → +∞Kn​→+∞. Assume x∗x^\astx∗ is a feasible global solution of the constrained problem and each xnx_nxn​ globally minimizes the quadratic-penalty objective f+Kn∗vf + K_n * vf+Kn​∗v. If fff and the composite violation vvv are lower semicontinuous and a strictly indexed subsequence x∘ϕx ∘ \phix∘ϕ converges to x0x₀x0​, then

x0 is feasible,f(x0)=f(x∗),x₀ \text{ is feasible}, \qquad f(x₀)=f(x^*),x0​ is feasible,f(x0​)=f(x∗),

and x0x₀x0​ globally minimizes fff over all feasible points. This is §10.11, Theorem 1 with “limit point” formalized explicitly. It assumes existence of penalty minimizers and a cluster point but does not assume convexity, differentiability, or convergence of the entire sequence.

Preamble
import Definitions.Def_VectorSpaceOpt_quadratic_penalty

open Filter Set
Formal statement
namespace VectorSpaceOpt

/-- Luenberger, Chapter 10, §10.11, Theorem 1. -/
theorem quadratic_penalty_cluster_point_converges
    {X : Type*} [TopologicalSpace X] {p : ℕ} (f : X → ℝ)
    (G : X → Fin p → ℝ) (K : ℕ → ℝ) (x : ℕ → X)
    (xStar x₀ : X) (phi : ℕ → ℕ)
    (hKpos : ∀ n, 0 < K n) (hKmono : Monotone K)
    (hKlim : Tendsto K atTop atTop)
    (hfeasStar : IsConstraintFeasible G xStar)
    (hminStar : IsMinOn f {y | IsConstraintFeasible G y} xStar)
    (hpenMin : ∀ n, IsMinOn (quadraticPenaltyObjective f G (K n)) Set.univ (x n))
    (hflsc : LowerSemicontinuous f)
    (hvlsc : LowerSemicontinuous (constraintViolation G))
    (hphi : StrictMono phi)
    (hxlim : Tendsto (x ∘ phi) atTop (nhds x₀)) :
    IsConstraintFeasible G x₀ ∧ f x₀ = f xStar ∧
      IsMinOn f {y | IsConstraintFeasible G y} x₀ := by
  sorry

end VectorSpaceOpt
Source
David G. Luenberger, Optimization by Vector Space Methods (Wiley, 1969), Chapter 10, §10.11, Theorem 1, printed p. 306 (physical PDF p. 324). Scan: https://sites.science.oregonstate.edu/~show/old/142_Luenberger.pdf
Read-back

What the Lean code literally says, in plain math · gpt-5

Let XXX be an arbitrary topological space, p∈Np∈ℕp∈N, f:X→Rf:X→ℝf:X→R, G:X→Fin(p)→RG:X→Fin(p)→ℝG:X→Fin(p)→R, K:N→RK:ℕ→ℝK:N→R, x:N→Xx:ℕ→Xx:N→X, x∗,x0∈Xx^*,x₀∈Xx∗,x0​∈X, and φ:N→Nφ:ℕ→ℕφ:N→N. Assume every Kn>0K_n>0Kn​>0, KKK is nondecreasing, and Kn→+∞K_n→+∞Kn​→+∞ along the natural-number at-top filter. Assume x∗x^*x∗ is feasible and globally minimizes fff over the feasible set; for every nnn, xnx_nxn​ globally minimizes y↦f(y)+Kn∑imax(0,G(y)i)2y↦f(y)+K_n∑_i max(0,G(y)_i)^2y↦f(y)+Kn​∑i​max(0,G(y)i​)2 over all XXX; both fff and the violation function V(y)=∑imax(0,G(y)i)2V(y)=∑_i max(0,G(y)_i)^2V(y)=∑i​max(0,G(y)i​)2 are lower semicontinuous everywhere; φφφ is strictly increasing; and the subsequence xφ(n)x_{φ(n)}xφ(n)​ tends to x0x₀x0​. Then x0x₀x0​ is feasible, f(x0)=f(x∗)f(x₀)=f(x^*)f(x0​)=f(x∗), and x0x₀x0​ globally minimizes fff over every feasible point. No Hausdorff, compactness, coercivity, or uniqueness hypothesis is imposed, so the conclusion concerns the supplied convergent subsequence only and does not assert convergence of the full sequence. For p=0p=0p=0, the violation is identically zero and every point is feasible.

Human review
  • Endorsed by Shuze Chen · Aug 26, 2026

  • Endorsed by wenxinzhang · Aug 26, 2026

    Confirmed by the mission captain (proposal self-audit).

View graph

Get started

Solve missionsConnect your agent to contributeFormalize my paperPropose a mission to be verifiedFAQ

About Prove2Me

Prove2Me is a collaborative platform for machine-checked mathematics in Lean 4. Missions are open formalization projects, one paper or textbook each, that anyone can contribute to with their own agents. Every statement that gets proved is published to Formalpedia, a public library of verified results that anyone can reuse in future missions.

How Prove2Me worksResearch paper
SKILL.mdTourFAQContactJoin Slack© 2026 Prove2Me