REW

What Is The Golden Search Value?

Published Aug 29, 2025 4 min read
On this page

The Golden Search value is derived from the golden ratio, Ο•phi πœ™ (phi), which is approximately 1.618034. The algorithm itself, properly known as the golden section search, uses this ratio to efficiently find the minimum or maximum of a unimodal function within a specified interval. The specific search values, or probe points, used in each step of the golden section search are placed at a distance related to Ο•phi

πœ™

from the ends of the current search interval.

Detailed analysis of the golden search value

The "golden search value" refers to the constant proportion used in the golden section search method. This iterative optimization algorithm progressively narrows the search interval for an extremum (a minimum or maximum).

The golden ratio (Ο•phi

πœ™

)

The search is founded on the golden ratio, Ο•phi

πœ™

, an irrational number with a deep history in mathematics and aesthetics.

  • Formula: The exact value of the golden ratio is expressed as Ο•=1+52phi equals the fraction with numerator 1 plus the square root of 5 end-root and denominator 2 end-fraction

    πœ™=1+5√2

    .

  • Approximate value: The decimal approximation of Ο•phi

    πœ™

    is 1.61803398875....

  • The reciprocal: The reciprocal of the golden ratio, 1/Ο•1 / phi

    1/πœ™

    , is approximately 0.618034. This is the value most commonly used for positioning the internal points in the search algorithm.

The golden section search algorithm

The algorithm operates on a "unimodal" functionβ€”one that has a single local extremum within a given interval. Here is a step-by-step breakdown of the process for finding a minimum:

  1. Define the search space: The algorithm begins with a defined search interval, [a,b]open bracket a comma b close bracket

    [π‘Ž,𝑏]

    , where the minimum is known to exist.

  2. Calculate initial interior points: The algorithm places two initial interior points, x1x sub 1

    π‘₯1

    and x2x sub 2

    π‘₯2

    , symmetrically inside the interval. The placement is determined by the golden ratio's reciprocal:

    • x1=a+(1βˆ’1/Ο•)(bβˆ’a)x sub 1 equals a plus open paren 1 minus 1 / phi close paren open paren b minus a close paren

      π‘₯1=π‘Ž+(1βˆ’1/πœ™)(π‘βˆ’π‘Ž)

    • x2=a+(1/Ο•)(bβˆ’a)x sub 2 equals a plus open paren 1 / phi close paren open paren b minus a close paren

      π‘₯2=π‘Ž+(1/πœ™)(π‘βˆ’π‘Ž)

    • Note that 1βˆ’1/Ο•=1/Ο•21 minus 1 / phi equals 1 / phi squared

      1βˆ’1/πœ™=1/πœ™2

      , which is approximately 0.382.

  3. Evaluate the function: The function is evaluated at these two points, yielding f(x1)f of open paren x sub 1 close paren

    𝑓(π‘₯1)

    and f(x2)f of open paren x sub 2 close paren

    𝑓(π‘₯2)

    .

  4. Narrow the interval: The algorithm uses the function evaluations to shrink the interval.

    • If f(x1)<f(x2)f of open paren x sub 1 close paren is less than f of open paren x sub 2 close paren

      𝑓(π‘₯1)<𝑓(π‘₯2)

      , the new interval becomes [a,x2]open bracket a comma x sub 2 close bracket

      [π‘Ž,π‘₯2]

      . This is because the minimum must lie within this smaller range.

    • If f(x1)>f(x2)f of open paren x sub 1 close paren is greater than f of open paren x sub 2 close paren

      𝑓(π‘₯1)>𝑓(π‘₯2)

      , the new interval becomes [x1,b]open bracket x sub 1 comma b close bracket

      [π‘₯1,𝑏]

      for the same reason.

  5. Repeat iteratively: The process is repeated with the new, smaller interval. The key advantage of using the golden ratio is that one of the two interior points for the new iteration is already in place from the previous step. This saves a function evaluation with each iteration.

Efficiency and comparison with other methods

The golden section search is a robust method for optimization, but it has trade-offs compared to other techniques.

Feature Golden Section Search Bisection Method (for roots) Fibonacci Search
Problem Type Finding the extremum (min/max) of a unimodal function. Finding the root (zero) of a function. Very similar to golden section; uses Fibonacci numbers for interval reduction.
Convergence Linear convergence rate, which is slower than some advanced methods. Linear convergence, but with a faster rate (0.5 vs. ~0.618). The theoretical best for a fixed number of function evaluations.
Efficiency Very efficient with each iteration because one of the two search points is reused, reducing the number of function evaluations per step. Each iteration requires one new function evaluation to calculate the midpoint. Maximally efficient in terms of maintaining the probe ratios during an iteration.
Robustness Exceptionally robust, as it only requires the function to be unimodal and does not need derivative information. Reliable, but needs two initial points with opposite signs. Also very robust, and the golden section is the limit of Fibonacci search.
Applicability A strong choice when function evaluations are computationally expensive. Best for finding roots when bracketing is possible. Best for cases where the number of evaluations is fixed in advance.
Enjoyed this article? Share it with a friend.