Prove2Me
Navigate
MissionsFormalpediaBlogsUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

Optimality of a feasible penalty cluster point

Proved
VectorSpaceOpt.penalty_cluster_point_optimal

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

cluster-pointglobal-minimumlower-semicontinuityoptimality

Let a subsequence of x n converge to a feasible point x₀, and let f be lower semicontinuous at x₀. Assume a feasible point xStar globally minimizes f on the constraint set and that f (x n) ≤ f xStar for every n. Then

f(x0)=f(x∗)f(x₀)=f(x^*)f(x0​)=f(x∗)

and x₀ is itself a global constrained minimizer. This is the optimality half of the cluster-point argument on p. 306. It cleanly separates the lower-semicontinuous objective limit from feasibility recovery, and it states feasibility of both reference and limit points explicitly because Mathlib's IsMinOn predicate alone does not include set membership.

Preamble
import Definitions.Def_VectorSpaceOpt_quadratic_penalty

open Filter Set
Formal statement
namespace VectorSpaceOpt

/-- The optimality half of Luenberger, Chapter 10, §10.11, Theorem 1. -/
theorem penalty_cluster_point_optimal
    {X : Type*} [TopologicalSpace X] {p : ℕ} (f : X → ℝ)
    (G : X → Fin p → ℝ) (x : ℕ → X) (xStar x₀ : X) (phi : ℕ → ℕ)
    (hphi : StrictMono phi)
    (hxlim : Tendsto (x ∘ phi) atTop (nhds x₀))
    (hflsc : LowerSemicontinuousAt f x₀)
    (hupper : ∀ n, f (x n) ≤ f xStar)
    (hfeasStar : IsConstraintFeasible G xStar)
    (hminStar : IsMinOn f {y | IsConstraintFeasible G y} xStar)
    (hfeas₀ : 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, optimality part of 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, x:N→Xx:ℕ→Xx:N→X, x∗,x0∈Xx^*,x₀∈Xx∗,x0​∈X, and φ:N→Nφ:ℕ→ℕφ:N→N. Assume φφφ is strictly increasing, xφ(n)x_{φ(n)}xφ(n)​ tends to x0x₀x0​, fff is lower semicontinuous at x0x₀x0​, and f(xn)≤f(x∗)f(x_n)≤f(x^*)f(xn​)≤f(x∗) for every nnn. Assume G(x∗)i≤0G(x^*)_i≤0G(x∗)i​≤0 for every iii, f(x∗)≤f(y)f(x^*)≤f(y)f(x∗)≤f(y) for every feasible yyy with all G(y)i≤0G(y)_i≤0G(y)i​≤0, and x0x₀x0​ itself is feasible. Then f(x0)=f(x∗)f(x₀)=f(x^*)f(x0​)=f(x∗), and f(x0)≤f(y)f(x₀)≤f(y)f(x0​)≤f(y) for every feasible yyy. No member xnx_nxn​ is assumed feasible, and no relation to penalty parameters or penalized minimization is present in this theorem. The space need not be Hausdorff; for p=0p=0p=0, 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