Examples of Markov chains

Jump to navigation Jump to search


This page contains examples of Markov chains in action.

Board games played with dice

A game of Monopoly, snakes and ladders or any other game whose moves are determined entirely by dice is a Markov chain. This is in contrast to card games such as poker or blackjack, where the cards represent a 'memory' of the past moves. To see the difference, consider the probability for a certain event in the game. In the above mentioned dice games, the only thing that matters is the current state of the board. The next state of the board depends on the current state, and the next roll of the dice. It doesn't depend on how things got to their current state. In a game such as poker or blackjack, a player can gain an advantage by remembering which cards have already been shown (and hence which cards are no longer in the deck), so the next state (or hand) of the game is not independent of the past states.

A very simple weather model

The probabilities of weather conditions, given the weather on the preceding day, can be represented by a transition matrix:

<math>
   P = \begin{bmatrix}
       0.9 & 0.1 \\
       0.5 & 0.5
   \end{bmatrix}

</math> The matrix P represents the weather model in which a sunny day is 90% likely to be followed by another sunny day, and a rainy day is 50% likely to be followed by another rainy day. The columns can be labelled "sunny" and "rainy" respectively, and the rows can be labelled in the same order.

(P)i j is the probability that, if a given day is of type i, it will be followed by a day of type j.

Notice that the rows of P sum to 1: this is because P is a stochastic matrix.

Predicting the weather

The weather on day 0 is known to be sunny. This is represented by a vector in which the "sunny" entry is 100%, and the "rainy" entry is 0%:

<math>
   \mathbf{x}^{(0)} = \begin{bmatrix}
       1 & 0
   \end{bmatrix}

</math>

The weather on day 1 can be predicted by:

<math>
   \mathbf{x}^{(1)} = \mathbf{x}^{(0)} P  = 
   \begin{bmatrix}
       1 & 0
   \end{bmatrix}
   \begin{bmatrix}
       0.9 & 0.1 \\
       0.5 & 0.5
   \end{bmatrix}
   
   = \begin{bmatrix}
       0.9 & 0.1
   \end{bmatrix} 

</math>

Thus, there is an 90% chance that day 1 will also be sunny.

The weather on day 2 can be predicted in the same way:

<math>
   \mathbf{x}^{(2)} =\mathbf{x}^{(1)} P  = \mathbf{x}^{(0)} P^2 
   = \begin{bmatrix}
       1 & 0
   \end{bmatrix}
   \begin{bmatrix}
       0.9 & 0.1 \\
       0.5 & 0.5
   \end{bmatrix}^2
   
   = \begin{bmatrix}
       0.86 & 0.14
   \end{bmatrix} 

</math> or

<math>
   \mathbf{x}^{(2)} =\mathbf{x}^{(1)} P 
   = \begin{bmatrix}
       0.9 & 0.1
   \end{bmatrix}
   \begin{bmatrix}
       0.9 & 0.1 \\
       0.5 & 0.5
   \end{bmatrix}
   
   = \begin{bmatrix}
       0.86 & 0.14
   \end{bmatrix} 

</math>

General rules for day n are:

<math>
   \mathbf{x}^{(n)} = \mathbf{x}^{(n-1)} P 

</math>

<math>
   \mathbf{x}^{(n)} = \mathbf{x}^{(0)} P^n 

</math>

Steady state of the weather

In this example, predictions for the weather on more distant days are increasingly inaccurate and tend towards a steady state vector. This vector represents the probabilities of sunny and rainy weather on all days, and is independent of the initial weather.

The steady state vector is defined as:

<math>

   \mathbf{q} = \lim_{n \to \infty} \mathbf{x}^{(n)}

</math>

but only converges to a strictly positive vector if P is a regular transition matrix (that is, there is at least one Pn with all non-zero entries).

Since the q is independent from initial conditions, it must be unchanged when transformed by P. This makes it an eigenvector (with eigenvalue 1), and means it can be derived from P. For the weather example:

<math>

   \begin{matrix}
       P & = & \begin{bmatrix}
           0.9 & 0.1 \\
           0.5 & 0.5
       \end{bmatrix}
       \\
      \mathbf{q} P  & = & \mathbf{q}
       & \mbox{(} \mathbf{q} \mbox{ is unchanged by } P \mbox{.)}
       \\
       & = & \mathbf{q}I 
       \\
      \mathbf{q} (P - I)  & = & \mathbf{0} \\
       & = & \mathbf{q} \left( \begin{bmatrix}
           0.9 & 0.1 \\
           0.5 & 0.5
       \end{bmatrix}
       -
       \begin{bmatrix}
           1 & 0 \\
           0 & 1
       \end{bmatrix}
       \right) 
       \\
       & = & \mathbf{q} \begin{bmatrix}
           -0.1 & 0.1 \\
           0.5 & -0.5
       \end{bmatrix} 
   \end{matrix}

</math> <math>

    \begin{bmatrix}
       q_1 & q_2
   \end{bmatrix}
   \begin{bmatrix}
       -0.1 & 0.1 \\
       0.5 & -0.5
   \end{bmatrix}
   = \begin{bmatrix}
       0 & 0
   \end{bmatrix}

</math>


So <math>

   -0.1 q_1 + 0.5 q_2 = 0

</math> and since they are a probability vector we know that <math> q_1 + q_2 = 1. </math>

Solving this pair of simultaneous equations gives the steady state distribution:

<math>

   \begin{bmatrix}
       q_1 & q_2
   \end{bmatrix}
   = \begin{bmatrix}
       0.833 & 0.167
   \end{bmatrix}

</math>

In conclusion, in the long term, 83% of days are sunny.

Citation ranking

Google's page rank algorithm is essentially a Markov chain over the graph of the Internet. More information can be found in "The PageRank Citation Ranking: Bringing Order to the Web" by Larry Page, Sergey Brin, R. Motwani, and T. Winograd.

References

See also

External links

Template:WS