So this is what my book states:
Random variables $X,Y, and Z$ are said to form a Markov chain in that order denoted $X\rightarrow Y \rightarrow Z$ if and only if:
$p(x,y,z)=p(x)p(y|x)p(z|y) $
That's great and all but that doesn't give any intuition as to what a Markov chain is or what it implies.
Can someone please give me more intuition as to how I should think about Markov chains?
Thanks a lot!!
Markov chains have the Markov Property, quoting Wikipedia:
Therefore state $Y$ depends only on $X$, hence $p(y) = p(y|x)p(x)$.
And state $Z$ depends only on $Y$, hence $p(z) = p(z|y)p(y)$.
In the case of Markov chains, the conditional probability $p(x_{t+1}|x_t)$ is referred to as the transition probability, and can be intuitively thought of as: given I'm in state $X_{t}$ what is the probability I end up in state $X_{t+1}$. It is therefore a random process with a limited memory of only one step behind it.