A Markov Chain is a specific type of dynamic system used to model probabilities. It describes the movement of something between a finite number of states.
The Rules of a Markov Matrix (or Transition Matrix)
- All entries are between 0 and 1 (they represent probabilities).
- The entries in each column sum to 1 (the total probability of moving from a given state must be 100%).
Example: A Simple Market Model
Imagine a city where people choose between two streaming services, "StreamFlix" and "ConnectPlus." Each month, some people switch.
- StreamFlix keeps 90% of its customers, and 10% switch to ConnectPlus.
- ConnectPlus keeps 80% of its customers, and 20% switch to StreamFlix.
We model this with a transition matrix A:
A=[0.90.10.20.8] Let x0=[0.6,0.4]T be the initial market share. After one month:
x1=Ax0=[0.90.10.20.8][0.60.4]=[0.620.38] StreamFlix will have 62% and ConnectPlus will have 38%.