What is The Memoryless Matrix?
Mathematical Foundation
Laws & Principles
- Row Sum Absolute Constraint: In a stochastic matrix, every single horizontal row must mathematically sum to exactly 100% (1.0). If you are currently in State A, the probability that you either stay in A or move to B must be entirely exhaustive. There is nowhere else to go.
- Steady-State Equilibrium: As n approaches infinity, regular Markov chains violently converge to a stationary equilibrium distribution. If you simulate 1,000 steps, you will physically notice the final probabilities lock into a permanent gear. At that ceiling, your starting state (v₀) ceases to matter entirely.
- Memorylessness: If a customer is modeled transitioning between 'Brand A' and 'Brand B', the math ruthlessly assumes their chance of switching tomorrow is identical whether they just switched today, or if they have been loyal for 20 years. All historical memory is erased at each matrix multiplication step.
Step-by-Step Example Walkthrough
" A weather model has 2 states: Sunny (A) and Rainy (B). If it is Sunny today, there is an 80% chance it is Sunny tomorrow (P_AA = 0.8) and 20% Rainy (P_AB = 0.2). If it is Rainy today, it has a 30% chance of being Sunny tomorrow (P_BA = 0.3) and 70% of staying Rainy (P_BB = 0.7). It is exactly Sunny today (Init A = 1.0). What is the weather in 2 days (n=2)? "
- 1. Set Initial Vector: [1.0, 0.0]
- 2. Execute Step 1 Math: [1(0.8) + 0(0.3), 1(0.2) + 0(0.7)] = [0.8, 0.2]. (There is an 80% chance of Sun tomorrow).
- 3. Execute Step 2 Math: [0.8(0.8) + 0.2(0.3), 0.8(0.2) + 0.2(0.7)]
- 4. Calculate State A Output: 0.64 + 0.06 = 0.70.
- 5. Calculate State B Output: 0.16 + 0.14 = 0.30.