Optimization of functions of one variable (Section 2)

Slides:



Advertisements
Similar presentations
Line Search.
Advertisements

Polynomial Approximation PSCI 702 October 05, 2005.
Optimization.
CSE 330: Numerical Methods
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 One-Dimensional Unconstrained Optimization Chapter.
Optimization : The min and max of a function
Optimization 吳育德.
Optimization Introduction & 1-D Unconstrained Optimization
Optimization of thermal processes2007/2008 Optimization of thermal processes Maciej Marek Czestochowa University of Technology Institute of Thermal Machinery.
Forecasting JY Le Boudec 1. Contents 1.What is forecasting ? 2.Linear Regression 3.Avoiding Overfitting 4.Differencing 5.ARMA models 6.Sparse ARMA models.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 6 Roots of Equations Bracketing Methods.
Engineering Optimization
ENGR 351 Numerical Methods Instructor: Dr. L.R. Chevalier
Optimization Methods Unconstrained optimization of an objective function F Deterministic, gradient-based methods Running a PDE: will cover later in course.
Optimization Methods One-Dimensional Unconstrained Optimization
Branch and Bound Algorithm for Solving Integer Linear Programming
Advanced Topics in Optimization
Optimization Methods One-Dimensional Unconstrained Optimization
Nonlinear Stochastic Programming by the Monte-Carlo method Lecture 4 Leonidas Sakalauskas Institute of Mathematics and Informatics Vilnius, Lithuania EURO.
Tier I: Mathematical Methods of Optimization
Numerical Methods Golden Section Search Method - Theory
UNCONSTRAINED MULTIVARIABLE
Chapter 2 Single Variable Optimization
Part 2 Chapter 7 Optimization
ENCI 303 Lecture PS-19 Optimization 2
84 b Unidimensional Search Methods Most algorithms for unconstrained and constrained optimisation use an efficient unidimensional optimisation technique.
Nonlinear programming Unconstrained optimization techniques.
Chapter 7 Optimization. Content Introduction One dimensional unconstrained Multidimensional unconstrained Example.
Part 4 Nonlinear Programming 4.3 Successive Linear Programming.
1 Unconstrained Optimization Objective: Find minimum of F(X) where X is a vector of design variables We may know lower and upper bounds for optimum No.
Learning a Small Mixture of Trees M. Pawan Kumar Daphne Koller Aim: To efficiently learn a.
Presented by: Meysam rahimi
5/31/ Multi Dimensional Direct Search Methods Major: All Engineering Majors Authors: Autar Kaw, Ali Yalcin
Goal Seek and Solver. Goal seeking helps you n Find a specific value for a target cell by adjusting the value of one other cell whose value is allowed.
Department of Mechanical Engineering, The Ohio State University Sl. #1GATEWAY Optimization.
CSE 589 Part VI. Reading Skiena, Sections 5.5 and 6.8 CLR, chapter 37.
MER 160, Prof. Bruno1 Optimization The idea behind “optimization” is to find the “best” solution from a domain of “possible” solutions. Optimization methods.
The Islamic University of Gaza Faculty of Engineering Civil Engineering Department Numerical Analysis ECIV 3306 Chapter 5 Bracketing Methods.
L21 Numerical Methods part 1 Homework Review Search problem Line Search methods Summary 1 Test 4 Wed.
Tutorial 3, Part 1: Optimization of a linear truss structure
1 Chapter 6 General Strategy for Gradient methods (1) Calculate a search direction (2) Select a step length in that direction to reduce f(x) Steepest Descent.
L24 Numerical Methods part 4
1 Introduction to Statistics − Day 4 Glen Cowan Lecture 1 Probability Random variables, probability densities, etc. Lecture 2 Brief catalogue of probability.
Exam 1 Oct 3, closed book Place ITE 119, Time:12:30-1:45pm
Gradient Methods In Optimization
Optimal Path Planning Using the Minimum-Time Criterion by James Bobrow Guha Jayachandran April 29, 2002.
Nonlinear Programming In this handout Gradient Search for Multivariable Unconstrained Optimization KKT Conditions for Optimality of Constrained Optimization.
Optimization in Engineering Design 1 Introduction to Non-Linear Optimization.
INTRO TO OPTIMIZATION MATH-415 Numerical Analysis 1.
By Liyun Zhang Aug.9 th,2012. * Method for Single Variable Unconstraint Optimization : 1. Quadratic Interpolation method 2. Golden Section method * Method.
2/24/ Golden Section Search Method Major: All Engineering Majors Authors: Autar Kaw, Ali Yalcin
Exam 1 Oct 3, closed book Place ITE 119, Time:12:30-1:45pm One double-sided cheat sheet (8.5in x 11in) allowed Bring your calculator to the exam Chapters.
Common Intersection of Half-Planes in R 2 2 PROBLEM (Common Intersection of half- planes in R 2 ) Given n half-planes H 1, H 2,..., H n in R 2 compute.
Optimization in Engineering Design Georgia Institute of Technology Systems Realization Laboratory 117 Penalty and Barrier Methods General classical constrained.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Part 2 - Chapter 7 Optimization.
Golden Section Method Prepared by Shahrzad Kavianirad Submitted to Prof. Dr. Sahand Daneshvar.
Part 4 Nonlinear Programming 4.3 Successive Linear Programming.
Constraints Satisfaction Edmondo Trentin, DIISM. Constraint Satisfaction Problems: Local Search In many optimization problems, the path to the goal is.
CSE 330: Numerical Methods. What is true error? True error is the difference between the true value (also called the exact value) and the approximate.
Solving Linear Program by Simplex Method The Concept
Heuristic Optimization Methods
Chapter 7 Optimization.
Chapter 7: Optimization
SOLUTION OF NONLINEAR EQUATIONS
5.3 Higher-Order Taylor Methods
Part 4 Nonlinear Programming
Part 4 - Chapter 13.
L23 Numerical Methods part 3
Part 2 Chapter 7 Optimization
Bracketing.
Presentation transcript:

Optimization of functions of one variable (Section 2) Find minimum of function of one variable Occurs directly Part of iterative algorithm (line search) Unimodal function, single optimum -- step toward optimum results in reduction of objective function along the path

Two methods Golden section search Polynomial approximation Golden section search; known convergence rate, guaranteed to find interval bounding optimum (tolerance interval). Provides information about confidence in solution. Expensive Polynomial approximation. Efficient but not as robust as Golden section search

Golden section search Starts with interval known to contain minimum (tolerance interval) Proceeds by narrowing tolerance interval Uses four data points for which objective function is evaluated. In each iteration -- one additional function evaluation Tolerance interval reduces to 61.8% of interval from previous iteration

Golden section method xlo xhi x1 x2 xlo’ xhi’ x2’ x1’ Second iteration First iteration

Bounds on minimum Fl Fu 1.618(xu-xl) xu First iteration xl Second iteration xl’ x1’ x2’ xu’

Bounding minimum algorithm Given, xl, Fl, xmax Guess xu Y Fu>Fl Minimum in [xl,xu] STOP N Expand x1=xu* xu=x1+1/(x1-xl) Y Fu>F1 N Expand xl=x1 * Stop if xu>xmax

Example of minimizing function using second degree polynomial approximation obtained through regression. Four data points are used from minimum bounding solution

Example of minimizing function using second degree polynomial approximation obtained through regression. Five data points uniformly distributed between 10 and 30 are used

Example of minimizing function using second degree polynomial approximation obtained using three data points (exact fit)

Minimizing constrained functions of one variable Direct approach Deal with each function (objective, constraint) individually Indirect approach Develop and use pseudo objective function that includes both the objective function and the constraint functions