335. Lagrange Relaxation

2 types of points:

335.0.1. Single Variate

For constrained single variate:

Example
min𝑥0𝑓(𝑥)=𝑥2+2𝑥3

Derivatives:

𝑓(𝑥)=2𝑥+2𝑓(𝑥)=2

Thus, 𝑓 is convex.

FOC solution:

𝑓(𝑥)=0𝑥=1

This is the unconstrained minimizer, but it violates 𝑥0:

  • Since 𝑥=1 lies outside the feasible set, the closest feasible point is the boundary 𝑥=0.

Evaluation:

𝑓(0)=3

So the constrained optimum is at 𝑥=0 with objective value 3.

335.0.2. Multi Variate

Example
min𝑥2𝑓(𝑥)=(𝑥12)2+4(𝑥21)2𝑠.𝑡.𝑥1+2𝑥22

For this CP, the FOC solution 𝑥=(2,1) is infeasible

The closest feasible solution is not optimal

𝑧=max𝑥𝑛𝑓(𝑥)𝑠.𝑡.𝑔𝑖(𝑥)𝑏𝑖𝑖=1,,𝑚

Replace hard constraints with soft constraints

𝑧𝐿(𝜆)=max𝑥𝑛𝑓(𝑥)+𝑖=1𝑚𝜆𝑖[𝑏𝑖𝑔𝑖(𝑥)]𝜆𝑖0

Lagrangian

ℒ︀(𝑥|𝜆)=𝑓(𝑥)+𝑖=1𝑚𝜆𝑖[𝑏𝑖𝑔𝑖(𝑥)]

𝜆𝑖 is the Lagrangian multiplier

For a minimization problem

𝑧=min𝑥𝑛{𝑓(𝑥)|𝑔𝑖(𝑥)𝑏𝑖𝑖=1,,𝑚}𝑧𝐿(𝜆)=max𝑥𝑛𝑓(𝑥)+𝑖=1𝑚𝜆𝑖[𝑏𝑖𝑔𝑖(𝑥)]𝜆𝑖0
Example
𝑧=max𝑥1+𝑥2𝑠.𝑡.𝑥12+𝑥228𝑥26

Original NLP

𝑧=max𝑥2{𝑥1+𝑥2|𝑥12+𝑥228,𝑥26}

Given the Lagrangian multipliers 𝜆={𝜆1,𝜆2}0, the Lagrangian is:

ℒ︀(𝑥|𝜆)=𝑥1+𝑥2𝑓+𝜆1(8𝑥12𝑥22)𝑏1𝑔1+𝜆2(6𝑥2)𝑏2𝑔2

We may then solve

𝑧𝐿(𝜆)=max𝑥2ℒ︀(𝑥|𝜆)

given any 𝜆0.

E.g.:

335.0.3. Bounds

Lagrance relaxation provides bounds for the original NLP

Weak Duality of Lagrangian Relaxation

𝑧𝐿(𝜆)𝑧𝜆0

Proof

𝑧=max𝑥𝑛={𝑓(𝑥)|𝑔𝑖(𝑥)𝑏𝑖𝑖=1,,𝑚}max𝑥𝑛={𝑓(𝑥)+𝑖=1𝑚𝜆𝑖[𝑏𝑖𝑔𝑖(𝑥)]|𝑔𝑖(𝑥)𝑏𝑖𝑖=1,,𝑚}max𝑥𝑛={𝑓(𝑥)+𝑖=1𝑚𝜆𝑖[𝑏𝑖𝑔𝑖(𝑥)]}=𝑧𝐿(𝜆)

Given that 𝑥𝐿(𝜆)𝑧 for all 𝜆0, the Lagrange dual program is defined as:

min𝜆0𝑧𝐿(𝜆)

The lagrange multipliers are the dual variables in NLP