Exam Flashcards

(5 cards)

1
Q

Create a linprog program based on
max 6π‘₯ βˆ’ 𝑦
s. t. 4𝑦 βˆ’ π‘₯ β‰₯ 10
2π‘₯ + 𝑦 ≀ 10
2𝑦 βˆ’ π‘₯ ≀ 5
π‘₯, 𝑦 ∈ ℝ

A

f = [-6 1]
A = [1 -4;2 1;-1 2]
b = [-10 10 5]
linprog(f,A,b)

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

Probability shop is empty

A

is just p0

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

probability queue is empty

A

all shop employees are used
aka if 4 shop employies: p0+p1+p2+p3
aka p0(1+c1+c2+c3+c4)

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

newtons step

A

minimise 𝑔(𝑑) = 𝑓(π‘₯0 βˆ’ 𝑑𝑓′(π‘₯0))
𝑔′(𝑑) = 𝑓′(π‘₯0 βˆ’ 𝑑𝑓′(π‘₯0))(βˆ’π‘“β€²(π‘₯0)) = 0
solve for t
𝑑 = (π‘₯0 βˆ’ π‘˜πœ‹)/𝑓′(π‘₯0)
find the smallest positive optimal step size for k
π‘₯1 = π‘₯0 βˆ’ t𝑓′(π‘₯0) = π‘₯0 βˆ’ [(π‘₯0 βˆ’ πœ‹)/𝑓′(π‘₯0)]𝑓′(π‘₯0)

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

mean service
times

A

W-Wq

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