Download presentation
Presentation is loading. Please wait.
1
Function Optimization
Lecture 5 Function Optimization Math for CS Lecture 5
2
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
3
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
4
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
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
6
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
7
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
8
The step size 2 Thus, the basic step of our steepest descent can be written as follows: or (3) Math for CS Lecture 5
9
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
10
e(y) descend rate 2 Since Q is invertible, we have: And
,what allows to rewrite (4) as: or Math for CS Lecture 5
11
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
12
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
13
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
14
Proof From the definitions we obtain
Here, the Kantorovich inequality was used. Math for CS Lecture 5
15
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
16
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
17
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
18
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
19
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
20
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
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.