minima of a multivariate function

122 Views Asked by At

Say I have a function of 2 or more variables f(x,y,...). There is nothing given about the function (concave, convex etc). Is it always the case that minima you get by forcing some of these variables to zero always greater than what you get otherwise?

1

There are 1 best solutions below

2
On

You remember me things we were doing, even with computers, about 60 years ago.

Suppose a function of two variables $f(x,y)$ that you want to minimize assuming that the minimum is unique.

  • So, fix $y=y_0$ and minimize $f(x,y_0)$ with respect to $x$; the best point corresponds to $x_0$.
  • Now, minimize $f(x_0,y)$ with respect to $y$; the best point corresponds to $y_1$. Make $y_0=y_1$ and repeat step $1$.
  • Repeat steps $1$ and $2$ until convergence.

You can generalize the procedure to any number of variables.

If I properly remember, in the very very first version of the IBM Scientific Subroutine Package, there was one subroutine performing like that