Week 1 Flashcards

1
Q

What is the objective function?

A

The function we want to maximize/minimize

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

What is the decision variable?

A

The variable we can change to meet out goals

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

What is an LP-problem?

A

A linear optimization problem, it an problem in the form,

  • max f(x)*
  • gi(x)* ≤ b, i = 1, …, m

in f, g: Rn –> R

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

What is Seperability?

A

Each function is the sum of terms in which each term is a function of one of the variables only. e.g.

Σj=1n fj(xj)

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

What is proportionality?

A

The value of the function is proportional with the value of earch of the variables. Thus, any increate of 1 unit of a given variable gives a constant cange in function, value, independent of the value of the variable.

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

What is divisibility?

A

All variables may take any values in R. Typically, they will attain fractional values.

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

What is the form of a linear problem in the objective function?

A

Σj=1ncjxj

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

How to create a linear problem?

A
  1. First create the function to maximize
  2. Write the constraints, note: be sure to watch for x ≥ 0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How to resolve fractions in a linear problem? For example

1800 (x1/(x1 + x2)) + 3800 (x1/(x1 + x2) ≤ 3000

A
  1. Multiply both by (x1+x2)
  2. Then rewrite s.t. the variables are on the left and a number is on the right.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How to rewrite a min(…) function to a linear function?

A

Create a variable z for which holds:

  • z* ≤ …
  • z* ≤ …

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

When is a set convex?

A

A set is convex iff. x, y ∊ C and for all λ ∊ [0, 1] then the point

z = λx + (1 - λ) ∊ C

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

What is a halfspace?

A

H = {x ∊ ℝn : hTx ≤ 𝛅 }, this is convex

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

What is a hyperplane?

A

H = { x∊ℝn : hTx = 𝛅 }

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

What is a basic feasible solution?

A

Any feasible point that is determined by n linearly independent bounding hyperplanes.

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

What is the skeleton of a polyhedron?

A

The extreme points and the edges together

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

What is an edge?

A

The segment of the line beween two neighbouring extrem points.

17
Q

What is the definition of an extreme point?

A

A point in the polyhedron which cannot be rewritten as a convex combination of two other points.

18
Q

What is the definiton of a vertex?

A

The only intersection point of the polyhedron with some hyperplane

19
Q

When does a system have a unique solution?

A

Let x* be an element of ℝn and let I = {i: aiTx* = bi} the set of indices of constraints that hold with equaltity at x*. Then the following are equilvalent:

  1. There exists n vectors in the set {ai: i∊ I}, which are linearly independent
  2. The span of the vectors ai, i ∊ I, is all of ℝn can be expressed as a linear combination of the vectors ai, i ∊ I.
  3. The system of equations aiTx = bi, i∊I, has a unique solution.
20
Q

When is a solution a basic feasible solution?

A

For a non-empty polyhedron P, the following 3 statements are equivalent:

a. x* ∈ P is an extreme point of P,
b. x* is a basic feasible solution
c. x* is a vertex

21
Q

When does a extreme point exist?

A

Given a non-empty polyhedron P = {x ∈ Rn |aTi x ≥ bi , i = 1, . . . , m}, then the following statements are equivalent:

a) P has at least one extreme point;
b) P doesnotcontainaline;i.e.,does not exist x∈P,d !=0 ∈ Rn,∀λ∈R: x+λd∈P;c) There exist n vectors out of the family of a1, . . . , am which are linearly independent.

22
Q

When does an LP problem have a extreme point?

A

If the feasible polyhydron contains at least one extreme point, and for which an optimal solution exists, there is always an extere point that is an optimal solution.