Equation of Parabola in Rosenbrock function

54 Views Asked by At

The Rosenbrock function is a popular benchmark for optimization, its general form is $$ f(x, y) = (a - x)^2 + b(y - x^2)^2 $$ where typically $a=1$ and $b=100$. The function looks like this

enter image description here

Is it possible to find the equation of the parabola that would fit within its contours? Here's a rough drawing.

enter image description here

1

There are 1 best solutions below

2
On

It's just $y=x^2$.

For any fixed $x$ value (i.e. vertical line), the bottom of the trough, where $f$ is minimal along that line, occurs where $\partial f/\partial y = 0$. And $\partial f/\partial y = 2b(y-x^2)$.