Title: Chapter 8: Linearization Methods for Constrained Problems
1Chapter 8 Linearization Methods for Constrained
Problems
ENGINEERING OPTIMIZATION Methods and
Applications A. Ravindran, K. M. Ragsdell, G. V.
Reklaitis
- Book Review
- Presented by Kartik Pandit
- July 23, 2010
2Outline
- Introduction
- Direct Use of Successive Linear Programs
- Linearly Constrained Case
- General Nonlinear Programming Case
- Separable Programming
- Single-Variable Functions
- Multivariable Separable Functions
- Linear Programming Solutions of Separable
- Problems
3Introduction
4Introduction
- Efficient algorithms exist for two problem
classes - Unconstrained problems
- Completely linear constrained problems
- Most approaches to solve the general problem of
non-linear objective functions with non-linear
constraints exploit techniques that solve the
easy problems.
5Introduction
- The basic Idea
- Use linear functions to approximate both the
objective function as well as the constraints
(Linearization). - Employ LP algorithms to solve this new linear
program.
6Introduction
- Linearization can be achieved in two ways
- Any non-linear function can be
approximated in the vicinity of a point by
using Taylors expansion, - is called the linearization point.
- Using piecewise linear approximations and then
applying a modified simplex algorithm (separable
programming).
78.1 Direct Use of Successive Linear Programs
88.1 Direct Use of Successive Linear Programs
- Using Taylors expansion linearize all problem
functions at some selected estimate of the
solution. Result is an LP. is called the
linearization point. - With some additional precautions the LP solution
ought to be an improvement over the linearization
point. - There are two cases to be considered
- Linearly constrained NLP case
- General NLP case
98.1.1 Direct Use of Successive Linear Programs
Linearly constrained NLP case
108.1.1 Linearly constrained NLP case
- The linearly constrained NLP problem that of
- is a nonlinear objective function. Feasible
region is a polyhedron, however optimal solution
can lie anywhere within the feasible region.
118.1.1 Linearly Constrained NLP case
- Using Taylors approximation around the
linearization point and ignoring the second
and higher order terms we obtain the linear
approximation of around the point . - So the linearized version becomes
- The Solution of the linearized version is .
How close is to the solution to the
original NLP? - By virtue of minimization it must be true that
128.1.1 Linearly Constrained NLP case
- Using a bit of algebra leads us to the result
- So the vector is a descent
direction. - In chapter 6 we studied that a descent direction
can lead to an improved point only if it is
coupled with a step adjustment procedure. - All points between and are feasible.
Moreover since is a corner point, any point
beyond it on the line are outside the feasible
region. - So, to improve upon , a line search method
is employed in the line segment - Minimizing will find a point such that
138.1.1 Linearly Constrained NLP case
- will not in general be the optimal solution
but it will serve as a linearization point for
the next approximating LP. - The text book presents the Frank-Wolfe Algorithm
that employs this sequence of alternating LPs
and line searches.
148.1.1 Linearly Constrained NLP case Frank-Wolfe
Algorithm (page 339)
15Frank-Wolfe Algorithm Execution Example 8.1
(Page Number 340)
16Frank-Wolfe Algorithm Execution Example 8.1
(Page Number 340)
17Frank-Wolfe Algorithm
- Frank-Wolfe algorithm converges to a Kuhn-Tucker
point from any feasible starting point. - No analysis for rate of convergence.
- However, if is convex we can obtain
estimates on how much remaining improvements can
be achieved. - If is convex and it is linearized at a
point , for all - Hence after each cycle the difference
gives an estimate of the
improvement.
188.1.2 Direct Use of Successive Linear Programs
General NLP case
198.1.2 General Nonlinear Programming Case
- At some linearization point the linear
approximation is
20General Nonlinear Programming Case
- If we solve the LP approximation we obtain a new
point , but it is highly unlikely that
it is feasible. - If is infeasible then
is no guarantee than an
improved estimate of the true optimum has been
attained. - if is a series of points each of
which is the solution of the LP problem then in
order to attain convergence to the true optimum
solution it is sufficient that at each point
an improvement be made in both the objective
function value and the constraint infeasibility.
21General Nonlinear Programming Case Example 8.4
(page 349)
- The linearized sub-problem after simplification
is
22Example 8.4
238.1.2 General Nonlinear Programming Case
- In example 8.4 we saw a case where there is a
divergence away from the optimal. - For suitably small neighborhood of any
linearization point linearization is a good
approximation. - Need to ensure that the linearization is used
only within the immediate vicinity of the base
point. - Where is some step size.
24Example 8.5 Step Size Constraints
- Bounds of are
introduced in the example of 8.4. - Where
25Example 8.5 Step Size Constraints
26Penalty Functions
- We can remove the constraints
- and instead do a line search over a penalty
function in the direction - defines by the vector
- A two step algorithm can be developed
- Construct the LP and solve it to yield a new
point - For a suitable parameter the line search
problem - would be solved o yield a new point
278.2 Separable Programming
288.2 Separable Programming
- For a nonlinear function , partition the
interval into subintervals. and construct
individual linear approximations over each
subinterval. - Need to consider
- Single variable functions.
- Multi-variable functions.
298.2.1 Separable Programming Single-Variable
Functions
- Consider some single variable continuous function
, defined over the interval
. - Arbitrarily choose points over the interval
denoted by - Obtain
- For every pair of points draw a
straight line connecting - The equations for each of these lines is given by
30Separable Programming Single-Variable Functions
- These equations can be rewritten as
- Simplifying further gives
31Separable Programming Single-Variable Functions
- Consequently sets of equations can be
represented by two equations
328.2.2 Multivariable Separable Functions
- Definition A function of variables
is said to be separable if it van be expressed as
a sum of single-variable functions that each
involve only one of the variables. - Example
- But not
- needs to be separable in order to build
piecewise linear approximations.
338.2.2 Multivariable Separable Functions
- Subdivide the interval of values on each variable
with grid points. - Then the approximating piecewise linear function
is
34LP Solutions of Separable Problems
- The only feature requiring special attention is
condition - In the ordinary simplex method the basic
variables are the only ones that can be nonzero. - Before entering one of the s into the basis
a check is made to ensure that no more than one
other associated with the corresponding
variable is in the basis (is nonzero)
and, if it is, that the s are adjacent. - This is known as restricted basis entry.
35End