file last modified Fri 02 Feb 1996
n.b., need modern version of netscape to read this document correctly.
) =
f(X0 +
D)
) by
varying
, infact the minimization is
along a line direction D from original point
X0 in the multivariant space.



1/2
see Numerical Recipies).Establishing the initial bracket: We normally start a line search from a point with an idea that the function should decrease along the line. Numerical recipies gives a sensible routine for arriving at a third higher point (Chapter 10 mnbrak).
where
is the number (> 1) which ensures
the best reduction in bracket length per step:





=1.618 is the golden
section which is the way of diving a line of that the
ratio of the larger part to the total is the same as the ratio of
the smaller to larger. This number is meant to have
special aesthetic properties.
to get d

each step.
It has linear convergence properties
- to reduce interval by factor of 10 needs
(1/log[
]) = 5 steps.

We will fit the functional form for a parabola:

The routine in practice would be indentical to the summary set out for the golden section method, except that step 2. is replaced by this choice.
We may expect that this choice will be good as we get close to the minimum. This is because as we have seen near a minimum any function behaves like a quadratic. We can expect that in the final stages the routine will exhibit supralinear convergence properties.

In life you never get something for nothing so these great convergence properties have a cost. Quadratic interpolation can fail consider the example below:

As can be seen point 2 is at the minimum of the fitted parabola so the new test point will be at exactly the same place and the routine will get stuck. Another potential problem is if the interpolation routine starts to osscilate between two solutions. How can these problems be addressed?
The answer is combine quadratic interpolation with the robust but plodding method of golden section search. When things are proceeding well quadratic interpolation is used but if things prove difficult a golden section move is made. Numerical Recipies gives such a routine.
We shall now look how these line search methods can be used to tackle optimization on multidimensional surfaces.
On to next section: Descents Methods