An Optimization Classic
Example:
Rosenbrock function: A function of two variables with minimum at \((a,a^2)\), which lies inside a narrow valley:
\[ (a- x_1)^2 + b(x_2 - x_1^2)^2 \]
![rosenbrock function](images/rosenbrock.png)
Below we set values for a
and b
and define the rosenbrock
function. We expect the minimum of the function to be at \((1,1)\) (when a=1
).