Slides Flashcards
(41 cards)
What is a feature of the Markov-chains regarding the probability to switching to another node?
Only the current node matters, thus P(Xn+1 = in+1 | Xn = In, Xn-1 = in-1,…) = P(Xn+1 = in+1 | Xn = In)
What are the Chapman-Kolomonogorov equations? And what do they mean?
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.
What are the three states a Markov chain can be in?
- Recurrent
- Transient
- Absorbing

What is the definition of a transient Markov chain?

What is the definition of a recurring Markov-chain?

What is the definition of an absorbing Markov-chain?

What are the two ways you can calculate the long run probabilities 𝜋?
- 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.)
- Solve a system: solve the following system of linear equations 𝜋 = 𝜋P and Σi in {1, …, n}𝜋i = 1.
How to calculate the Mean Return Time?
You can easily calculate the MRT using μjj = 1/𝜋jj
What is the definition of the First Return Time (or recurrence time)?

What is the Mean First Passage Time?
It is the average first time the chain goes through a node.
How to compute the Mean First Passage Time?
Define Nj = P but without the ith column AND row,
then solve the following set of linear equations:
μj = [I - Nj]-11
What is the definition of the time until the Markov chain is absorbed?

How to find the probability of absorption?
Solve the following set of Linear Equations.

How to get the mean time until absorption?
Solve the following system of linear equations

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

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

How to find the transition matrix Q?
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.

What does a Queue consist of?
- 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.
What are the most important examples of order of service?
- FCFS (First Come First Served)
- LCFS (Last Come First Served)
- ROS (Random Order of Service)
- PS (Processor Sharing)
What are some of the most important properties of the exponential distribution?
- It is memoryless (i.e. P(X> t + s | X > t) = P(X > s))
- 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/μ*
When is a Markov chain ergodic?
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
How can the limiting distribution (p) be found (in a basic single server B&D model)?

What are some of the intresting statistics of queues?

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

















