Function Optimization

Slides:



Advertisements
Similar presentations
5.1 Real Vector Spaces.
Advertisements

1 OR II GSLM Outline  some terminology  differences between LP and NLP  basic questions in NLP  gradient and Hessian  quadratic form  contour,
Optimization of thermal processes
Optimization 吳育德.
Linear Discriminant Functions
Jonathan Richard Shewchuk Reading Group Presention By David Cline
Function Optimization Newton’s Method. Conjugate Gradients
Tutorial 12 Unconstrained optimization Conjugate gradients.
Methods For Nonlinear Least-Square Problems
Constrained Optimization
Tutorial 5-6 Function Optimization. Line Search. Taylor Series for Rn
Unconstrained Optimization Problem
Gradient Methods Yaron Lipman May Preview Background Steepest Descent Conjugate Gradient.
Tutorial 10 Iterative Methods and Matrix Norms. 2 In an iterative process, the k+1 step is defined via: Iterative processes Eigenvector decomposition.
Math for CSTutorial 5-61 Tutorial 5 Function Optimization. Line Search. Taylor Series for R n Steepest Descent.
Function Optimization. Newton’s Method Conjugate Gradients Method
Why Function Optimization ?
Math for CSLecture 51 Function Optimization. Math for CSLecture 52 There are three main reasons why most problems in robotics, vision, and arguably every.
Tier I: Mathematical Methods of Optimization

ECE 530 – Analysis Techniques for Large-Scale Electrical Systems Prof. Hao Zhu Dept. of Electrical and Computer Engineering University of Illinois at Urbana-Champaign.
UNCONSTRAINED MULTIVARIABLE
ENCI 303 Lecture PS-19 Optimization 2
Multivariate Statistics Matrix Algebra II W. M. van der Veld University of Amsterdam.
Nonlinear programming Unconstrained optimization techniques.
Markov Decision Processes1 Definitions; Stationary policies; Value improvement algorithm, Policy improvement algorithm, and linear programming for discounted.
Functions of Several Variables Copyright © Cengage Learning. All rights reserved.
1 Optimization Multi-Dimensional Unconstrained Optimization Part II: Gradient Methods.
Chapter 8 Integration Techniques. 8.1 Integration by Parts.
Quasi-Newton Methods of Optimization Lecture 2. General Algorithm n A Baseline Scenario Algorithm U (Model algorithm for n- dimensional unconstrained.
Data Modeling Patrice Koehl Department of Biological Sciences National University of Singapore
Signal & Weight Vector Spaces
Chapter 2-OPTIMIZATION G.Anuradha. Contents Derivative-based Optimization –Descent Methods –The Method of Steepest Descent –Classical Newton’s Method.
Searching a Linear Subspace Lecture VI. Deriving Subspaces There are several ways to derive the nullspace matrix (or kernel matrix). ◦ The methodology.
Functions 2 Copyright © Cengage Learning. All rights reserved.
Solving Systems of Equations. Rule of Thumb: More equations than unknowns  system is unlikely to have a solution. Same number of equations as unknowns.
Chapter 14 Partial Derivatives
Lecture 7 Constrained Optimization Lagrange Multipliers
Computation of the solutions of nonlinear polynomial systems
Non-linear Minimization
Boyce/DiPrima 9th ed, Ch 9.6: Liapunov’s Second Method Elementary Differential Equations and Boundary Value Problems, 9th edition, by William E. Boyce.
5 Systems of Linear Equations and Matrices
Computational Optimization
Chapter 10 Optimal Control Homework 10 Consider again the control system as given before, described by Assuming the linear control law Determine the constants.
A power series with center c is an infinite series where x is a variable. For example, is a power series with center c = 2.
§7-4 Lyapunov Direct Method
Chapter 2 Minimum Variance Unbiased estimation
Transformations of Functions
Modern Control Systems (MCS)
13 Functions of Several Variables
CS5321 Numerical Optimization
CS5321 Numerical Optimization
Chap 3. The simplex method
CS5321 Numerical Optimization
Modern Control Systems (MCS)
CS5321 Numerical Optimization
Optimization Part II G.Anuradha.
6.5 Taylor Series Linearization
The Derivative as a Function
Numerical Analysis Lecture 17.
AS-Level Maths: Core 2 for Edexcel
5 INTEGRALS.
Performance Optimization
Outline Preface Fundamentals of Optimization
Outline Preface Fundamentals of Optimization
Section 3: Second Order Methods
Linear Equations in Linear Algebra
Conjugate Direction Methods
Presentation transcript:

Function Optimization Lecture 5 Function Optimization Math for CS Lecture 5

Why Function Optimization ? There are three main reasons why most problems in robotics, vision, and arguably every other science or endeavor take on the form of optimization problems . One is that the desired goal may not be achievable, and so we try to get as close as possible to it. The second reason is that there may be more ways to achieve the goal, and so we can choose one by assigning a quality to all the solutions and selecting the best one. The third reason is that we may not know how to solve the system of equations f(x) = 0, so instead we minimize the norm If(x)I, which is a scalar function of the unknown vector x. Math for CS Lecture 5

Local Minimization and Steepest Descent Suppose that we want to find a local minimum for the scalar function f of the vector variable x, starting from an initial point xo . Picking an appropriate xo is crucial, but also very problem-dependent . We start from xo , and we go downhill . At every step of the way, we must make the following decisions : Whether to stop. In what direction to proceed . How long a step to take. The following algorithm reflects various ‘descent minimization’ procedures: k=0; while xk is not a minimum compute step direction Pk with IIPkII = 1 compute step size ak xk+l = xk + akPk; k=k+1 end. Math for CS Lecture 5

Minimization of Positive Definite functions 1 The best direction of descent is not necessarily the direction of steepest descent. Consider a function: where Q is a symmetric, positive definite matrix. Positive definite means that for every nonzero x the quantity xTQx is positive. In this case, the graph of f(x) - c is a plane aTx plus a paraboloid xTQx. Of course, if f were this simple, no descent methods would be necessary. In fact the minimum of f can be found by setting its gradient to zero: so that the minimum x* is the solution to the linear system Qx=-a Since Q is positive definite, it is also invertible (why?), and the solution x* is unique. (1) Math for CS Lecture 5

Minimization of Positive Definite functions 2 In order to simplify the mathematics, we observe that if we let then we have so that e and f differ only by a constant. Since e is simpler, we consider that we are minimizing e rather than f. In addition, we can let what shifts the origin of the domain to x*, and study the function (2) Math for CS Lecture 5

The steepest descent direction where e in minimum reaches a value of zero : let our steepest descent algorithm find this minimum by starting from the initial point the algorithm chooses the direction of steepest descent: Which is opposite to the gradient of e evaluated at yk: Math for CS Lecture 5

The step size The most favorable step size will take us from yk to the lowest point in the direction of pk. This can be found by differentiating the function with respect to α, and setting the derivative to zero to obtain the optimal step αk and setting this to zero yields Math for CS Lecture 5

The step size 2 Thus, the basic step of our steepest descent can be written as follows: or (3) Math for CS Lecture 5

e(y) descend rate How much closer does one step bring us to the solution y* = 0? In other words, how much smaller is e(yk+1) relatively to e(yk)? From the definition (2) of e(y) and equation (3) for yk+1, we obtain: (4) Math for CS Lecture 5

e(y) descend rate 2 Since Q is invertible, we have: And ,what allows to rewrite (4) as: or Math for CS Lecture 5

Kantorovich inequality. Kantorovich inequality: Let Q be a positive definite, symmetric, n x n matrix. Then, for any vector y there holds: This inequality allows to prove the Steepest Descent Rate theorem. Math for CS Lecture 5

Steepest Descent Rate theorem 1 Let be a quadratic function of x, with Q symmetric and positive definite . For any xo, the method of steepest descent ,where Math for CS Lecture 5

Steepest Descent Rate theorem 2 Converges to the unique minimum point The difference at every step satisfies , where σ1 and σn are the respectively the largest and the smallest singular values of Q Math for CS Lecture 5

Proof From the definitions we obtain Here, the Kantorovich inequality was used. Math for CS Lecture 5

Analysis The ratio Is called a condition number of Q. The larger the condition number (ratio between the largest and the smallest singular values), the smaller the ratio And therefore the slower the convergence. Math for CS Lecture 5

Illustration Consider the two dimensional case, x R2. The figure shows a trajectory xk, imposed in the isocontours of f(x). The greater the ratio between the singular values, of Q (which is the aspect ratio of the ellipses), the slower the convergence rate. If the isocontours are circular (k(Q)=1) or the trajectory started from the ellipses axis, the single step brings us to x*. Math for CS Lecture 5

Convergence rate To characterize the speed of convergence of different minimization algorithms, we introduce the order of convergence. It is defined as the largest value of q, for which the Is finite. If is the limit, then we can write (for large values of k) The distance from x* is reduced by the q-th power at every step, therefore thehigher the order of convergence, the better. Math for CS Lecture 5

Stop criteria We do not know the x* and therefore f(x*). Thus the stop criteria is not trivial. The criteria can be |f(xk)-f(xk-1)| or |xk-xk-1|. The second criteria is better, since it indicates proximity of x*. Math for CS Lecture 5

Line search The steepest descend can be applied to general cases of f, not necessarily quadratic and not defined via In these cases, Q is the matrix of the second derivatives of f with respect to x, called a Hessian of f. In this case, only n first derivatives are needed to calculate the direction pk. The step size requires calculation of Hessian of f(x), which requires computing second derivatives, and therefore is very expensive. Using the line search allows to reach the minimum of f(x) in the direction pk without the Hessian calculation. (1) Math for CS Lecture 5

Line search 2 Line search runs as following. Let Be the scalar function of α representing the possible values of f(x) in the direction of pk. Let (a,b,c) be the three points of α, such, that the point of (constrained) minimum x’, is between a and c: a<x’<c. Then the following algorithm allows to approach x’ arbitrarily close: If b-a>c-b, u=(a+b)/2; If f(u)<f(b) (a,b,c)=(a,u,b) Else (a,b,c)=(u,b,c) a b c u If b-a<c-b, u=(b+c)/2; If f(u)<f(b) (a,b,c)=(b,u,c) Else (a,b,c)=(a,b,u) Math for CS Lecture 5