Slides Flashcards
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)?