Exam Flashcards

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