Fibonacci Search: Observation On Unimodal Functions
Fibonacci Search: Observation On Unimodal Functions
Fibonacci Search
MATH MODELING II FALL 2009 DR. XIN LI
The third case is usually combined witht eh second y case for convenience
Fall2009,MathModelingII(Dr.Li)
11/13/2009
Fall2009,MathModelingII(Dr.Li)
11/13/2009
The estimate x^ (of x*) is the midpoint in the last interval IN For k=N,N-1,,3: routine For k=2: take a point near the midpoint For the final step take the midpoint of the interval as the estimate of x*
Fall2009,MathModelingII(Dr.Li)
11/13/2009
Fall2009,MathModelingII(Dr.Li)
11/13/2009
Notes:
FN-2/FN <1/2 for N>1 The ratio between the lengths Lk-1 and Lk of intervals g after the kth iteration is equal to Fk-1/Fk The last two steps/iterations must be treated separately since the second to the last step has the midpoint as the existing point. So, we stay close to the midpoint and only check a point nearby (within 2*delta). The length of the interval g LN-1=LN-2/2 or LN-2/2+2*delta Take the midpoint of this interval in the last step (no further evaluation) as the estimate of x*. |error|<(1/2)LN-1+delta.
Fall2009,MathModelingII(Dr.Li)