Autumn 2021 Paper (Short Questions) Flashcards

1
Q

Which of the following statements is true?
(i) A linear programme is always a convex optimisation problem
(ii) A linear programme always has a unique optimal solution
(iii) In the feasible polytope of a linear program, at least one vertex corresponds to an optimal
solution (if an optimal solution exists)

A

(i) A linear programme is always a convex optimisation problem: TRUE
(ii) A linear programme always has a unique optimal solution: FALSE
(iii) In the feasible polytope of a linear program, at least one vertex corresponds to an optimal
solution (if an optimal solution exists):TRUE

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

How many 2-change neighborhoods of a given travelling salesperson tour are there in a graph with n nodes ?

A

n(n-3)/2

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

Which of the following are NP-Hard ?
(i) Travelling Salesperson
(ii) Linear Programming
(iii) Integer-Linear Programming

A

(i) Travelling Salesperson: NOT NP-HARD
(ii) Linear Programming: NOT NP-HARD
(iii) Integer-Linear Programming: NP-HARD

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

Consider an integer-linear program P and its standard LP relaxation P˜. Assume we know
that P˜ has an optimal solution x. Then x is an optimal solution of P if
(i) x is integral
(ii) P is unbounded
(iii) x is infeasible for P

A

(i) x is integral

If the LP relaxation of P˜ yields a solution x where all variables are integral, the x satisfies all the integer constraints of P as well as the linear constraints.

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

Is the LP given by ….

Maximize x1+x2
subject to x1-x3 ≤ 4
x1+x2 ≥ 2
x1+x3 ≤ -3
x1,x2,x3 ≥ 0

(i) infeasible, or
(ii) unbounded, or
(iii) has an optimal solution?

A

(i) infeasible

x1+x3 ≤ -3 (contradiction => infeasible)

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

Consider a primal problem P and its dual problem D. If D is unbounded, what can we say about P?

(i) P is infeasible
(ii) P is unbounded
(iii) P has an optimal solution
(iv) P can be either infeasible, unbounded or optimal; unbounded D doesn’t limit P in anyway

A

(i) P is infeasible

According to duality theory in LP, if dual problem D can be made arbitrarily large (unbounded), then no feasible solution can satisfy the primal constraint.

The rationale is that the unbounded solution un the dual indicates that there is no upper bound to restrict the primals feasible region effectively, usually leading to the primal being infeasible.

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

Consider an integer-linear program P and its standard relaxation P~. Assume we know that P has an optimal solution. Is P~ …

(i) P is infeasible
(ii) P is unbounded
(iii) P has an optimal solution

A

(iii) P has an optimal solution

If P~ has an optimal solution, P has an optimal solution.

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

Set S is convex if for any two points, x1, x2 ∈ S
(i) Θx1 + Θx2 ∈ S, for all Θ ≥ 0
(ii) Θx1 + Θx2 ∈ S, for all 1 ≥ Θ ≥ 0
(iii) Θx1 + (1 − Θ)x2 ∈ S, for all 1 ≥ Θ ≥ 0
(iv) Θx1 + (1 − Θ)x2 ∈ S, for all Θ ≥ 0

A

(iv) Θx1 + (1 − Θ)x2 ∈ S, for all Θ ≥ 0

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

Is the LP given by…

Minimise 2x1 + x2 + 2x4
s.t. x1 + 3x3 ≤ 5
x1 + 3x2 ≥ 3
x1−2x4 ≥ 4
x1, x2, x3, x4 ≥ 0

(i) infeasible, or
(ii) unbounded, or
(iii) has an optimal solution?

A

(iii) has an optimal solution

Has an optimal solution, where
𝑥1, 𝑥2, and 𝑥4 can be adjusted within their constraints to minimize 2𝑥1 + 𝑥2 + 2𝑥4

.

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

Convert the following LP into canonical form…

Maximize x2-x1
s.t. x1+2x2 ≤ 1
2x1+x2 ≥ 1
x1, x2 ≥ 0

A

Canonical Form:

Maximize x2-x1
s.t. x1 + 2x2 + s1 = 1
2x1 + x2 - s2 = 1
x1,x2,s1,s2 ≥ 0

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