I would be thankful if someone can help me to solve this optimization problem.
minimize sum(x)
subject to
0 <= x <= a;
y >= 0;
sum(y) <= b;
x.*f(y) >= c;
x and y are the vector variables of size N, and f is some non-negative function.
any help or suggestion is highly appreciated.
Ali