Slides Flashcards

1
Q

What is a feature of the Markov-chains regarding the probability to switching to another node?

A

Only the current node matters, thus P(Xn+1 = in+1 | Xn = In, Xn-1 = in-1,…) = P(Xn+1 = in+1 | Xn = In)

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

What are the Chapman-Kolomonogorov equations? And what do they mean?

A

pij(n+m) = Σk in S pik(n)pkj(m) i, j in S.

It means that the probability of going from i to j in n + m steps is that probability. It is the same as matrix multiplication and thus it means we can just use matrix multiplication.

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

What are the three states a Markov chain can be in?

A
  1. Recurrent
  2. Transient
  3. Absorbing
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the definition of a transient Markov chain?

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

What is the definition of a recurring Markov-chain?

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

What is the definition of an absorbing Markov-chain?

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

What are the two ways you can calculate the long run probabilities 𝜋?

A
  1. Power method: compute the square of the matrix of transition probabilities until all rows are about the same. (i.e. first calculate P2, then (P2)2, etc.)
  2. Solve a system: solve the following system of linear equations 𝜋 = 𝜋P and Σi in {1, …, n}𝜋i = 1.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How to calculate the Mean Return Time?

A

You can easily calculate the MRT using μjj = 1/𝜋jj

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

What is the definition of the First Return Time (or recurrence time)?

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

What is the Mean First Passage Time?

A

It is the average first time the chain goes through a node.

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

How to compute the Mean First Passage Time?

A

Define Nj = P but without the ith column AND row,

then solve the following set of linear equations:

μj = [I - Nj]-11

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

What is the definition of the time until the Markov chain is absorbed?

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

How to find the probability of absorption?

A

Solve the following set of Linear Equations.

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

How to get the mean time until absorption?

A

Solve the following system of linear equations

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

How can we do the calculations for probability of absorption and mean time until absorption using matrix calculations?

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

Why can we define a single matrix Q that is sufficient for all P(t)?

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

How to find the transition matrix Q?

A

First of all note that the row sum of every transition Q should be 0.

We (usually) have that the diagonal of the matrix contains the negative of the sum of the rest of the entire row.

Formally we have (image).

We set 𝝂n to be the value in the Exp(…) distribution. We set qij as in the value that is in the Poisson(..) or Exp(..) distribution of the changes.

18
Q

What does a Queue consist of?

A
  • i.i.d. arrivals (from either finite or infinite populations)
  • a waiting room (finite, infinite or even zero)
  • i.i.d. service requiests
  • servers (at least 1, finite or infinite)

The Queue has an order of service.

19
Q

What are the most important examples of order of service?

A
  • FCFS (First Come First Served)
  • LCFS (Last Come First Served)
  • ROS (Random Order of Service)
  • PS (Processor Sharing)
20
Q

What are some of the most important properties of the exponential distribution?

A
  1. It is memoryless (i.e. P(X> t + s | X > t) = P(X > s))
  2. The minimum of mutilple exponential distributed variables is exponentially distributed:
    • xj ~ Exp(μj)
    • M = min(x1, x2, …), then M ~ Exp(μ* = Σj in {1, 2, …}μj)
    • P(M = Xn) = μn*
21
Q

When is a Markov chain ergodic?

A

A Markov chain is ergodic if there is a number N such that any state can be reached from any other state in any number of steps less or equal to a number N

22
Q

How can the limiting distribution (p) be found (in a basic single server B&D model)?

A
23
Q

What are some of the intresting statistics of queues?

A
24
Q

How to calculate the total customers in the system in steady state (Ls)?

A
25
Q

How to compute the expected number of waiting customers?

A
26
Q

How to compute the waiting time (in line waiting and total)?

A

Using Little’s Law:

27
Q

How to compute the number of busy server and utilization rate?

A
28
Q

How can Queue charactaristics be written?

A
29
Q

In a M/M/1 model how do we get pn?

A
30
Q

What is meant by PASTA?

A
31
Q

How do we get pn in a M/M/c queue?

A
32
Q

What are the queue statistics in a M/M/1 model?

A
33
Q

What are the queue statistics for a M/M/c model?

A
34
Q

How to get the probability of delay in a M/M/c queue?

A

(see the Erlang-C formula, rest is included for clarity).

35
Q

How is the steady-state and are the performance measures calculated for a M/M/c/N queue?

A

They are calculated numerically by a computer. We can compute pn (see image). Normalization means to sum it and then infer the p0 since the total probability is 1.

36
Q

How is pn calculated in a M/M/∞? And the performance measures?

A
37
Q

How do you calculate pn for a M/M/c/c queue?

A
38
Q

How co calculate the loss probability in a M/M/c/c queue?

A

(Erlang-B formula, rest added for context)

39
Q

What is a Finite Source Queing Model? How is pn found in a Finite Source Queueing Model?

A

(see image)

pn is found using a numerical program (using the recursion pn+1 = pn λnn+1

40
Q

How to calculate pn in a M/G/1 queue?

A
41
Q

What is the Open Jackson Network Model? How do we calculate the important statistics?

A