Lecture 16 Flashcards
Adjacency matrix, from? to?
from top (column indexes) to left (line indexes)
Markov property
only the most recent state matters to determine the probability of the next state
Transition (or Markov) matrices
(I,J) entry is a transition probability in [0,1], from state J to state I. Columns add up to one.
Markov A, state x0, how to predict?
x1 = A.x0
x2 = A.x1…
Power method
Steady-state?
Long-run equilibrium state reached regardless of the current state, converges to steady-state vector x=Ax s.t x is the eigenvector corresponding to eigenvalue λ=1
Page rank
Probability for a website to be visited by a user randomly clicking on links.
Howto:
Matrix with links from one website to another. Then columns are averaged to get the probability to go from one website to another. If no link in a website, numerical issue, we average to every website.
Page rank issue
Markov matrix does not guarantee a unique solution if the graph is not connected.
Perron-Frobenius Theorem: if M markov matrix with all positive entries, then M has a unique steady-state x.
M=0.85A + 0.15/n 1, O(n) (as if 85% chance to clic a link / 15% chance to start over from a random page)