Golden section search
From DDWiki
Golden section search is a bracketing optimization method that can be used to find the maximum or minimum of a single unimodal function. It derives its name from the golden ratio which is used as an efficient means to define the two interior points used in the algorithm.
Contents |
Golden Ratio
The term "golden ratio" was coined by the Ancient Greeks who found that this ratio was aesthetically pleasing. The golden ratio is related to the Fibonaci sequence and shows up frequently in nature as well as science and engineering. The ratio can be defined as follows:

Example
The Golden section search finds local extrema by successively narrowing the brackets that enclose the local extrema. The following will be demonstrated for the minimization problem pictured.
The first step is to define the inital bracket interval that contains only one local minimum at x = a and x = b. Once this interval is selected, two interior points, x1 and x2, must now be selected using the golden ratio R.



A simple comparison between f(x1) and f(x2) rules out one region where the minimum cannot exist. In this case because f(x2) > f(x1) the minimum must exist to the left of f(x2) thus the region between f(x2) and b can be removed from the bracket. Similarly in the case where f(x1) > f(x2), the region between a and f(x1) would be removed from the bracket.
Because x1 and x2 were chosen using the golden ratio, they coincide with points needed in the next iteration, requiring only one function evaluation per iteration.
In the second iteration, the new outer brackets, a' and b' coincide with a and x2 of the previous iteration. Similarly one of the new interior points f(x2') coincides with f(x1) of the previous iteration. As a result of these coinciding points, only one new function evaluation needs to be made at the new interior point f(x1') where


Similarly if the bracket was truncated in the opposite direction, the new function evaluation would be at f(x2') where

This process continues until the point converges close enough to the minima to trigger the termination criterion. Since the brackets shrink by a predictable amount each iteration, the terminination criteria can be as simple as ending after a predetermined number of iterations.
This algorithm can be used to find local maxima by reversing which region is removed from the bracket. In order to find the maximum, if f(x2) < f(x1) remove the region between f(x2) and b from the bracket, and if f(x1) < f(x2), remove the region between a and f(x1) from the bracket. Once removed, the new points required can be found using the same method as for minimization.
External Links
For an interactive graphical example, visit:
http://www.cse.uiuc.edu/eot/modules/optimization/GoldenSection/
For more detail on the computer algorithm behind golden section search, refer to:
http://www.numerical-recipes.com/
References
1. Chapra, Steven C. and Canale, Raymond P. Numerical Methods for Engineers. Second ed. 1988 McGraw Hill.
2. http://www.cse.uiuc.edu/eot/modules/optimization/GoldenSection/
3. http://www.numerical-recipes.com/


