1 / 7

Tutorial 5

Tutorial 5. Function Optimization. Line Search. Taylor Series for R n Steepest Descent. a. c. u. b. Line search runs as following. Let

hworley
Download Presentation

Tutorial 5

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Tutorial 5 Function Optimization. Line Search. Taylor Series for Rn Steepest Descent Tutorial 5-6

  2. a c u b 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) Line search 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) Tutorial 5-6

  3. The Taylor series for f(x) is ,where For the function of m variables, the expression is Taylor Series Tutorial 5-6

  4. Consider the elliptic function: f(x,y)=(x-1)2+(2y-2)2and find the first three terms of Taylor expansion. 2D Taylor Series: Example Tutorial 5-6

  5. -f’(0) 2 1 Consider the elliptic function: f(x,y)=(x-1)2+(2y-2)2and find the first three terms of Taylor expansion. Find the first step of Steepest Descent. Steepest Descent Tutorial 5-6

  6. Consider the elliptic function: f(x,y)=(x-1)2+(2y-2)2and find the first three terms of Taylor expansion. Find the first step of Steepest Descent. Now, find a step a, in the direction of gradient, minimizing the function: Steepest Descent Tutorial 5-6

  7. Consider the elliptic function: f(x,y)=(x-1)2+(2y-2)2and find the first three terms of Taylor expansion. Find the first step of Steepest Descent. Is it a minimum? Next step? Steepest Descent Tutorial 5-6

More Related