Integer Linear Programming Flashcards

1
Q

What is Integer Linear Programming (ILP)?

A

ILP is a type of optimization that seeks integer solutions to linear programming problems, useful where variables must be whole numbers, such as in resource allocation or scheduling.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How does ILP differ from LP in terms of solutions?

A

ILP solutions must be integers, which means the feasible region is discrete and not continuous as in LP, making ILP inherently harder to solve.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the types of ILP problems?

A

ILP problems can be categorized into binary (variables are 0 or 1), pure (all variables are integers), and mixed (combination of integer and continuous variables).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are logical constraints in ILP and how are they modeled?

A

Logical constraints handle conditions like “if-then” or “either-or” and are modeled using binary variables and inequalities. For example, 𝑥1 + 𝑥2 ≥ 1 can model “x1 OR x2”.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Give an example of a real-world ILP problem.

A

Allocation of resources such as Covid vaccines to vaccination centers with the goal of minimizing wastage, considering constraints like availability of staff and operational hours.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the Branch-and-Bound algorithm?

A

A systematic method for solving ILP problems by sequentially breaking down the problem into smaller subproblems (branching), evaluating bounds on the optimal solution of subproblems, and pruning suboptimal solutions (fathoming).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is LP relaxation in the context of ILP?

A

LP relaxation involves solving the LP problem obtained by ignoring the integer constraints of the ILP, which helps in providing bounds for the Branch-and-Bound algorithm.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the steps in Branch-and-Bound for solving ILPs?

A

The steps include initializing bounds and feasible solutions, branching to create subproblems, bounding by solving LP relaxations, and fathoming subproblems based on bounds or feasibility.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How are subproblems fathomed in Branch-and-Bound?

A

Subproblems are fathomed if their bound is worse than the best found solution, if their LP relaxation is infeasible, or if an integer optimal solution for the LP relaxation is found.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Why is solving ILP considered difficult?

A

ILP is NP-complete, which means there is no known polynomial-time algorithm to solve all instances of ILP efficiently, unlike LP which can be solved in polynomial time under typical conditions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly