5/31/2016 1 Multi Dimensional Direct Search Methods Major: All Engineering Majors Authors: Autar Kaw, Ali Yalcin

Slides:



Advertisements
Similar presentations
5/1/ Finite Difference Method Civil Engineering Majors Authors: Autar Kaw, Charlie Barker
Advertisements

Civil Engineering Majors Author(s): Autar Kaw, Jai Paul
Newton’s Divided Difference Polynomial Method of Interpolation
Romberg Rule of Integration
5/19/ Runge 4 th Order Method Mechanical Engineering Majors Authors: Autar Kaw, Charlie Barker
5/20/ Multidimensional Gradient Methods in Optimization Major: All Engineering Majors Authors: Autar Kaw, Ali.
7/2/ Backward Divided Difference Major: All Engineering Majors Authors: Autar Kaw, Sri Harsha Garapati
8/8/ Euler Method Major: All Engineering Majors Authors: Autar Kaw, Charlie Barker
8/8/ Gauss Quadrature Rule of Integration Major: All Engineering Majors Authors: Autar Kaw, Charlie Barker
8/15/ Binary Representation Major: All Engineering Majors Authors: Autar Kaw, Matthew Emmons
8/30/ Secant Method Major: All Engineering Majors Authors: Autar Kaw, Jai Paul
Computer Engineering Majors Authors: Autar Kaw
9/14/ Trapezoidal Rule of Integration Major: All Engineering Majors Authors: Autar Kaw, Charlie Barker
1 Spline Interpolation Method Computer Engineering Majors Authors: Autar Kaw, Jai Paul
9/20/ Secant Method Civil Engineering Majors Authors: Autar Kaw, Jai Paul
9/22/ Runge 2 nd Order Method Major: All Engineering Majors Authors: Autar Kaw, Charlie Barker
10/8/ Propagation of Errors Major: All Engineering Majors Authors: Autar Kaw, Matthew Emmons
1 Lagrangian Interpolation Major: All Engineering Majors Authors: Autar Kaw, Jai Paul
1 Newton’s Divided Difference Polynomial Method of Interpolation Chemical Engineering Majors Authors: Autar Kaw, Jai.
10/20/ Runge 2 nd Order Method Chemical Engineering Majors Authors: Autar Kaw, Charlie Barker
10/21/ Bisection Method Major: All Engineering Majors Authors: Autar Kaw, Jai Paul
1 Newton’s Divided Difference Polynomial Method of Interpolation Major: All Engineering Majors Authors: Autar Kaw,
5/30/ Runge 4 th Order Method Chemical Engineering Majors Authors: Autar Kaw, Charlie Barker
Numerical Methods Multi Dimensional Direct Search Methods - Theory
11/16/ Euler Method Electrical Engineering Majors Authors: Autar Kaw, Charlie Barker
11/17/ Shooting Method Major: All Engineering Majors Authors: Autar Kaw, Charlie Barker
11/30/ Secant Method Industrial Engineering Majors Authors: Autar Kaw, Jai Paul
12/1/ Trapezoidal Rule of Integration Civil Engineering Majors Authors: Autar Kaw, Charlie Barker
1 Lagrangian Interpolation Computer Engineering Majors Authors: Autar Kaw, Jai Paul
1 Direct Method of Interpolation Major: All Engineering Majors Authors: Autar Kaw, Jai Paul
1/16/ Runge 4 th Order Method Civil Engineering Majors Authors: Autar Kaw, Charlie Barker
1/18/ LU Decomposition Industrial Engineering Majors Authors: Autar Kaw Transforming.
1/19/ Runge 4 th Order Method Major: All Engineering Majors Authors: Autar Kaw, Charlie Barker
1/29/ Bisection Method Computer Engineering Majors Authors: Autar Kaw, Jai Paul
Newton-Raphson Method Computer Engineering Majors Authors: Autar Kaw, Jai Paul Transforming Numerical Methods Education.
2/24/ Golden Section Search Method Major: All Engineering Majors Authors: Autar Kaw, Ali Yalcin
2/28/ Runge 4 th Order Method Computer Engineering Majors Authors: Autar Kaw, Charlie Barker
1 Newton’s Divided Difference Polynomial Method of Interpolation Mechanical Engineering Majors Authors: Autar Kaw,
3/12/ Trapezoidal Rule of Integration Computer Engineering Majors Authors: Autar Kaw, Charlie Barker
3/20/ Trapezoidal Rule of Integration Chemical Engineering Majors Authors: Autar Kaw, Charlie Barker
6/13/ Secant Method Computer Engineering Majors Authors: Autar Kaw, Jai Paul
Trapezoidal Rule of Integration
Civil Engineering Majors Authors: Autar Kaw, Charlie Barker
Computer Engineering Majors Authors: Autar Kaw, Charlie Barker
Numerical Methods Multi Dimensional Direct Search Methods - Example
Newton’s Divided Difference Polynomial Method of Interpolation
Civil Engineering Majors Authors: Autar Kaw, Charlie Barker
Spline Interpolation Method
Chemical Engineering Majors Authors: Autar Kaw, Charlie Barker
Spline Interpolation Method
Lagrangian Interpolation
Civil Engineering Majors Authors: Autar Kaw, Charlie Barker
Newton’s Divided Difference Polynomial Method of Interpolation
Trapezoidal Rule of Integration
Binary Representation
Industrial Engineering Majors Authors: Autar Kaw, Charlie Barker
Binary Representation
Binary Representation
Simpson’s 1/3rd Rule of Integration
Romberg Rule of Integration
Simpson’s 1/3rd Rule of Integration
Romberg Rule of Integration
Electrical Engineering Majors Authors: Autar Kaw, Charlie Barker
Romberg Rule of Integration
Spline Interpolation Method
Romberg Rule of Integration
Chemical Engineering Majors Authors: Autar Kaw, Charlie Barker
Industrial Engineering Majors Authors: Autar Kaw, Jai Paul
Newton’s Divided Difference Polynomial Method of Interpolation
Lagrangian Interpolation
Presentation transcript:

5/31/ Multi Dimensional Direct Search Methods Major: All Engineering Majors Authors: Autar Kaw, Ali Yalcin Transforming Numerical Methods Education for STEM Undergraduates

Coordinate Cycling Method

Multi Dimensional Direct Search Methods Method-Overview Obvious approach is to enumerate all possible solutions and find the min or the max. Very generally applicable but computationally complex Direct search methods are open A good initial estimate of the solution is required The objective function need not be differentiable 3

4 Coordinate Cycling Method Starts from an initial point and looks for an optimal solution along each coordinate direction iteratively. For a function with two independent variables x and y, starting at an initial point (x 0,y 0 ), the first iteration will first move along direction (1, 0) until an optimal solution is found for the function. The next search involves searching along the direction (0,1) to determine the optimal value for the function. Once searches in all directions are completed, the process is repeated in the next iteration and iterations continue until convergence occurs. The search along each coordinate direction can be conducted using anyone of the one-dimensional search techniques previously covered.

Example The cross-sectional area A of a gutter with base length b and edge length of l is given by. Assuming that the width of material to be bent into the gutter shape is 6, find the angle  and edge length l which maximizes the cross-sectional area of the gutter. l b l  

Solution Recognizing that the base length b can be expressed as, we can re-write the area function as Use as the initial estimate of the solution and use Golden Search method to determine optimal solution in each dimension. To use the golden search method we will use 0 and 3 as the lower and upper bounds for the search region

Solution Cont. Iteration 1 along (1,0) The maximum area of is obtained at point Iteration xlxl xuxu x1x1 x2x2 f(x 1 )f(x 2 ) 

Solution Cont. Iteration 1 along (0,1) The maximum area of is obtained at point Iterationxlxl xuxu x1x1 x2x2 f(x 1 )f(x 2 ) 

Solution Cont. Since this is a two-dimensional search problem, the two searches along the two dimensions completes the first iteration. In the next iteration we return to the first dimension for which we conducted a search and start the second iteration with a search along this dimension. After the fifth cycle, the optimal solution of (2.0016, 10420) with an area of is obtained. The optimal solution to the problem is exactly 60 degrees which is radians and an edge and base length of 2 inches. The area of the gutter at this point is

Additional Resources For all resources on this topic such as digital audiovisual lectures, primers, textbook chapters, multiple-choice tests, worksheets in MATLAB, MATHEMATICA, MathCad and MAPLE, blogs, related physical problems, please visit

THE END