Skip to main content

Questions tagged [continuous-optimization]

Filter by
Sorted by
Tagged with
0 votes
0 answers
78 views

I am trying to linearize the product $z=xy$, where $x$ is an integer variable and $y$ a continuous variable, both non-negative, for an optimization problem. I have tried the SCIP formulation: $v_{bn} \...
Ferran Cid's user avatar
3 votes
2 answers
498 views

The following problem is defined with binary variables $a_{i1}, a_{i2}, a_{i3}, k_1$ and $k_2$. Is it possible to avoid binary variables and to only work with continuous variables? How would we ought ...
Steven01123581321's user avatar
3 votes
1 answer
66 views

I have a recursive function that looks something like this. The variable x is a continuous variable. Do anyone have a reference that looks into a similar problem? $$f_i(y)=\min_{0\le x\le\overline{X_i}...
gmn's user avatar
  • 710
3 votes
0 answers
67 views

Could anyone help me with the KKT conditions of my problem? The different sums and sets confuse me more than a little. $$ \min_x \sum_{a \in A^1} p_a^1 X_a + \sum_{a \in A^2} p_a^2 X_a + \sum_{a \in A^...
orpanter's user avatar
  • 517
-1 votes
1 answer
162 views

I have to solve a problem from industry where there are a number of machines which should be assigned to a number of tasks. The difference from the general assignment problem is tough, that the ...
Harun Gül's user avatar
2 votes
1 answer
144 views

Let's consider the following minimization problem: \begin{align} \min_{x,a,b}&\quad X\tag1\\ \text{s.t.}&\quad X = \min(A,B)\tag2\end{align} with $A,B$ functions that depend on $X$. Is there a ...
orpanter's user avatar
  • 517
1 vote
1 answer
130 views

I have a problem as: $$ \begin{align} \begin{array}{cl} \underset{x \in \mathbb{R}^n_+}{\min} & c^\top x \\ \mathrm{s.t.} & Ax \leq \mathbf{1} \cdot b , \end{array} \end{align} $$ where $A \in ...
independentvariable's user avatar
1 vote
1 answer
127 views

I have a nonlinear bi-variate optimization problem like $\max \: f(x,y)$ where $f(x,y)$ is a nonlinear and differentiable function of both variables, and $0\le x\le 1$, $\:0\le y \le ub$. In order to ...
Amin's user avatar
  • 2,170
2 votes
3 answers
383 views

I'd like to find the minimum of a smooth, continuous function inside the unit hypercube (the dimensionality of which could go into the hundreds or even thousands). The function is convex (Hessian $\...
sk29910's user avatar
  • 123
5 votes
2 answers
249 views

Disclaimer: this question has been previously posted on Math StackExchange. I reposted it here since I did not receive any satisfactory answer there and a user suggested to re-post it here. Let $x\in\...
Apprentice's user avatar
9 votes
2 answers
847 views

We are working on a production scheduling problem that has both discrete ("how much to produce from good x and where") and continuous elements ("keep the workload of a production site below 0.7"), ...
ks.and1's user avatar
  • 193
11 votes
1 answer
762 views

I am trying to compare many unconstrained optimization algorithms like gradient method, Newton method with line search, Polak-Ribiere algorithm, Broyden-Fletcher-Goldfarb-Shanno algorithm, so on so ...
independentvariable's user avatar