Skip to main content

Menu

LEVEL 0
0/5 XP
HomeAboutTopicsPricingMy VaultStats

Categories

πŸ€– Artificial Intelligence
☁️ Cloud and Infrastructure
πŸ’Ύ Data and Databases
πŸ’Ό Professional Skills
🎯 Programming and Development
πŸ”’ Security and Networking
πŸ“š Specialized Topics
HomeAboutTopicsPricingMy VaultStats
LEVEL 0
0/5 XP
GitHub
Β© 2026 CheatGridβ„’. All rights reserved.
Privacy PolicyTerms of UseAboutContact

Markov Chains and Stochastic Processes Cheat Sheet

Markov Chains and Stochastic Processes Cheat Sheet

Back to Mathematics and Algorithms
Updated 2026-05-21
Next Topic: Mathematical Optimization Fundamentals Cheat Sheet

Markov chains and stochastic processes form the mathematical backbone of probabilistic modeling across machine learning, finance, biology, and operations research. This cheat sheet covers the complete landscape β€” from discrete-time Markov chains and their classification through continuous-time processes, hidden models, MCMC sampling, stochastic calculus, and modern applications. Each section pairs formal definitions with concrete formulas and usage patterns so you can move from theory to implementation quickly.

What This Cheat Sheet Covers

This topic spans 14 focused tables and 111 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.

Discrete-Time Markov Chains (DTMC) β€” FoundationsState ClassificationStationary Distribution and ConvergenceAbsorbing Markov ChainsContinuous-Time Markov Chains (CTMC)Poisson ProcessBirth-Death Processes and QueuesHidden Markov Models (HMMs)MCMC MethodsRandom Walks on GraphsMarkov Reward Processes and MDPsBrownian Motion and Stochastic CalculusApplicationsConvergence Diagnostics for MCMC

Discrete-Time Markov Chains (DTMC) β€” Foundations

ConceptExampleDescription
Markov Property
P(X_{n+1}=j \mid X_n=i, X_{n-1},\ldots) = P(X_{n+1}=j \mid X_n=i)
β€’ Future state depends only on present state, not history
β€’ "memorylessness" in the discrete setting
Transition Matrix
P = [p_{ij}], p_{ij} \ge 0, \sum_j p_{ij}=1
Row-stochastic matrix P where entry p_{ij} is the one-step probability of moving from state i to state j
Chapman-Kolmogorov Equation
P^{(m+n)} = P^{(m)} P^{(n)}
β€’ n-step transition probabilities obtained by matrix multiplication
β€’ (P^n)_{ij} gives P(X_n=j \mid X_0=i)
n-Step Transition Probability
(P^n)_{ij} = P(X_n = j \mid X_0 = i)
Computed by raising the transition matrix to the nth power
Initial Distribution
\mu_0 = [\mu_0(1), \ldots, \mu_0(k)], \mu_n = \mu_0 P^n
β€’ Row vector of initial probabilities
β€’ marginal at time n is \mu_0 P^n

More in Mathematics and Algorithms

  • Logic Cheat Sheet
  • Mathematical Optimization Fundamentals Cheat Sheet
  • Abstract Algebra Essentials Cheat Sheet
  • Complex Analysis Cheat Sheet
  • Graph Algorithms Shortest Paths and Network Search Cheat Sheet
  • Number Theory Cheat Sheet
View all 57 topics in Mathematics and Algorithms