1

The following is called Rosenbrock's valley or Rosenbrock's Banana Function,

$$f(x,y) = (1-x)^2+A(y-x^2)^2, \qquad (x,y) \in \Bbb R^2$$

Can you explain intuitively why is this function so important in the study of Optimization?

What is so special about this function that makes it so interesting in the study of Optimization?

user366312
  • 1,641

1 Answers1

2

The Wikipedia page has a nice picture and explanation:

The global minimum is inside a long, narrow, parabolic shaped flat valley. To find the valley is trivial. To converge to the global minimum, however, is difficult.

Solving for the minimizer analytically is easy: $f$ is minimized at $(1,1)$.

However, if $A$ is large, optimization algorithms might pay a lot of attention to the second term $(y-x^2)^2$ and find the "parabolic valley" $\{(x,y) : y=x^2\}$ easily, but will have trouble going along the valley (which is relatively flat) to find the minimizer $(1,1)$.

angryavian
  • 89,882