Skip to main content

Questions tagged [integer-programming]

Questions on optimization constrained to integer variables.

Filter by
Sorted by
Tagged with
0 votes
1 answer
85 views

Translating to English from a non-English physics book about measurements: Anif has $8$ big marbles and $15$ small marbles. The weight of the big and small marbles are $37.5$ and $12.5$ respectively. ...
user516076's user avatar
  • 2,491
0 votes
1 answer
95 views

Create a closed tour visiting the numbers. The tour must start and end at the same cell. During the tour, you can only visit the neighboring cell (up,down,left,right). The tour cannot contain a number ...
Oytunxxx's user avatar
0 votes
0 answers
36 views

Let $d\in \mathbb{N}$ be a fixed constant. Let $V\subseteq \{-1,0,1\}^d$ be some set of vectors and let $w\in \mathbb{Z}^d$. Consider the linear program find $ x\in \mathbb{R}^V $ such that: $ \sum_{v\...
ajdy's user avatar
  • 101
1 vote
2 answers
158 views

Given a matrix $A \in \mathbb{R}^{m \times n}$, I want to find a vector $\vec{x} \in \mathbb{N}_{+}^{m}$ so $\vec{y} = {A}^{T} \vec{x}$ is nearly a constant vector, i.e., the values of $\vec{y}$ are ...
Avi T's user avatar
  • 393
3 votes
1 answer
81 views

I'm working on an ILP formulation that's supposed to find the best scoring set of routes on a given turn in a 18xx-style board game (in this particular case, Shikoku 1889) Problem description To ...
Kulpas's user avatar
  • 113
2 votes
2 answers
131 views

Consider the following LP program $$ \min x_{n+1} $$ subject to: $$ \sum_{i=0}^n 2 x_i + x_{n+1} = n $$ $$ x_i \in \{ 0, 1 \} $$ And $n$ odd. The claim is that using the standard B&B algorithm ...
aram's user avatar
  • 2,005
0 votes
1 answer
57 views

I confused myself into a hole here, so just need to see what I am missing. So, in the Gomory fractional cut cutting plane algorithm you use the basis to generate a new cut. How come it does not ...
Alex's user avatar
  • 176
-1 votes
1 answer
77 views

Given a soccer league with 9 teams, is it possible to calculate the minimum number of weeks needed for each team to play each other twice, with the following restrictions: Each week, a maximum of 2 ...
Brett Van Tassel's user avatar
0 votes
1 answer
44 views

Suppose we have $$ S := \{x\in\mathbb{N}^{d}:Ax=b\}\subseteq\mathbb{N}^{d} $$ for some $k,d\in\mathbb{N}, b\in\mathbb{N}^{k}, A\in\mathbb{N}^{k\times d}$. The set $\mathbb{N}^{d}$ is partially ordered ...
David's user avatar
  • 163
0 votes
1 answer
50 views

How to choose $x$ positive integer such that $x*2024^n$ has uneven number of digits for the longest time? For example, if $x=1$, at $n=1$, I already have an even number of digits. With $x=7$, I have ...
FluidMechanics Potential Flows's user avatar
1 vote
0 answers
51 views

Given random value vectors $X_i \in \mathbb{F}_2^n$, for $i = 1, 2, \ldots, m$, and a target range $[a, b]$, the objective is to efficiently find all solutions to the inequality $a \leq w_H\left(\sum_{...
Wuwuwu's user avatar
  • 11
0 votes
1 answer
92 views

I need to maximize the following expressions: $mn-n^2$ given $0\lt m^2+n^2 < d$, where $d$ is given to me. I am also given that $m$ and $n$ are both integers and that $gcd(m, n) = 1$. I am unsure ...
user avatar
1 vote
2 answers
81 views

The question goes as follows: Given a directed graph $G = (V, A)$ with weights $w_v$ on the vertices for $v ∈ V$. Describe the problem of finding a closed subset of vertices with maximum weight as an ...
KaTee's user avatar
  • 39
0 votes
0 answers
70 views

The situation is : There are n bulbs and m power sources. The j-th power source has a failure probability of $P_j$. Each bulb is connected to 3 power sources, and only $\frac{3n}{m}$ bulbs can be ...
ZhuJerry's user avatar
1 vote
1 answer
190 views

The question: "given a set $S = \{x \in \mathbb{Z}^2 : 4x_1 + x_2 ≤ 28, x_1 + 4x_2 ≤ 27, x_1 − x_2 ≤ 1, x ≥ 0 \}$. we are tasked with deriving each facet of $\operatorname{conv}(S)$ as a Chvatal-...
alex's user avatar
  • 13
0 votes
1 answer
109 views

Given a target list $T = (t_1, t_2, \ldots, t_N)$ and a multiset $S = \{s_1, s_2, \ldots, s_M\}$, both with non-negative integer elements, $t_k\in \mathbb{N}_>$ and $s_k\in \mathbb{N}_>$, ...
daysofsnow's user avatar
1 vote
1 answer
206 views

Consider the following model of computation: The computer's memory consists of $n$ registers denoted $r_1, ..., r_n$, each holding an integer. In the following, an affine combination means an ...
Naomi Zhang's user avatar
1 vote
1 answer
53 views

If I have a convex set $Q\subseteq \mathbb{R}^n$ and a cone $E\subseteq \mathbb{R}^n$. Let $Q_I = conv\{Q \cap \mathbb{Z}^n\}$ and $E_I$ respectively. Is it in general the case that $Q_I + E_I \...
Sen90's user avatar
  • 477
1 vote
1 answer
103 views

I am an engineer who is currently working in network optimization problem. I have finised my master degree a long time ago. During my studies I have learnt about the penalty technique to turn a ...
Tuong Nguyen Minh's user avatar
1 vote
1 answer
296 views

Currently working on an optimization problem using pyomo. One constraint I need to make is to limit the number of times a situation occurs - Essentially when my variable x = 0. So I would like an ...
Bahumat's user avatar
  • 13
3 votes
0 answers
81 views

For fun, I explored vertex enumeration algorithms for linear programs to find all feasible extreme points in a polytope. Naturally, I asked, "Do there exist algorithms that solve for all integer ...
JJMae's user avatar
  • 2,157
1 vote
1 answer
63 views

I've recently asked this question about dividing n people into m groups for the specific model I used to solve the assignment problem of dividing the people into groups (boolean variables xij that ...
Zufra's user avatar
  • 197
2 votes
1 answer
116 views

I have modeled the problem of dividing n people into m groups using a binary $nxn$ matrix that we will call X. If $x_{ij} = 1$ it means that person i is with person j in the solution's groups. If $x_{...
Zufra's user avatar
  • 197
3 votes
1 answer
276 views

I have the following system of equations, for $i$ in $1,\ldots,n$: $$ \mathbf{a_i} \cdot \mathbf{x} = y $$ The variables are $\mathbf{x}$ - a vector of $n$ non-negative integers, and $y$ - a positive ...
Erel Segal-Halevi's user avatar
3 votes
1 answer
74 views

During a class assignment, I was presented with the following question: Provide an integer program that has an exponential number of branches...(expunged excess) ...
JJMae's user avatar
  • 2,157

1
2 3 4 5
23