Your syntax seems wrong:
FindMinimum[{x^2 + y^2, y == 1}, {x, y}]
which asks to start x with value y . It doesn't really matter to me.
Perhaps you are trying to do:
Minimize[{x^2 + y^2, y == 1}, {x, y}]
Out: {1, {x -> 0, y -> 1}}
Obviously your syntax is valid. Consider Minimize , as shown above, as a possible problem for your problem.
Mr. Wizard
source share