I have published an article Markov Chain: Simple example with Python in medium.
Link
https://medium.com/@balamurali_m/markov-chain-simple-example-with-python-985d33b14d19
The python code can be viewed at:
https://gist.github.com/balamurali-m/76bba013deace4fff9e2805b8bcab55f
https://gist.github.com/balamurali-m/d7a42ab2e477c41af74ce145f0c23989
A Markov process is a stochastic process that satisfies Markov Property. Markov process is named after the Russian Mathematician Andrey Markov. Markov Chain is a type of Markov process and has many applications in real world. Google’s Page Rank algorithm is based on Markov chain. Markov Chain can be applied in speech recognition, statistical mechanics, queueing theory, economics, etc. In Markov Chain, the next state of the process depends only on the previous state and not on the prior sequence of events
For more details please refer the above link to the article.
You can also refer to my blog for the article details:
Leave A Comment