I am a very junior learner in this field. I read the wiki for Markov kernel:
https://en.wikipedia.org/wiki/Markov_kernel
The first example is a simple random walk with the Markov kernel $\kappa$:
$$\kappa(x,B) = \frac{1}{2}1_B(x-1)+\frac{1}{2}1_B(x+1), \\ \forall x\in \mathbb{Z}, \forall B \in \mathcal{P}(\mathbb{Z}), \ \ \text{power set of }\mathbb{Z}$$
which describes the transition rule for the random walk on $\mathbb{Z}$.
I am confused that how does this Markov kernel work?
For example, let $B = [-2,2]$ and then depict the $\kappa$ w.r.t. $x$. So $\kappa = 1$ when $x = [-1,1]$ and $\kappa = 0.5$ when $x = [-3,-1]$ and $x= [1,3]$ and $0$ otherwise. Is this what $\kappa$ only means?
Besides, according to "A question about Markov kernel definition.", $\kappa(\cdot,B)$ is a measurable function and $\kappa(x,\cdot)$ is a probability measure. It makes me confused to explain the above example according to this.
Note: I also read the following from one paper: $\kappa(x,B)$ is the probability that $x_{k+1}\in B$, knowing that $x_k = x$. I am also confused about how does this description relate to the above meaning of Markov kernel.