I am reading about pushdown automata and I don't understand the definition of $\vdash$.
My book writes that $$(q,aw,Z\alpha)\vdash(p,w,\beta\alpha)$$ if $$(p,\beta)\in\delta(q,a,Z)$$
Can someone please explain to me this definition ?
I understand that the automata is at first in state $q$ and the reminder of the input is $aw$ (so it starts with $a$ so it fits to the second argument of $\delta)$,
but I have problems understanding whats happening with $Z\alpha$ and $\beta\alpha$, is the content of the stack $Z\alpha$ or is it just whats written at the top ? why go from $Z\alpha$ to $\beta\alpha$ ? and actually where is $\alpha$, is it in $\Gamma^{*}$?
another small issue I have: does $\Sigma\subset\Gamma$ ? it is not written in my book but I suspect so.
if it does, does $\Gamma=\Sigma\cup\{\dashv\}$? does $\dashv\not\in\Sigma$ by definition ?
I'm sorry for all this definition questions, it is not defined in my book.
$\Gamma$ is the stack alphabet; it may be entirely disjoint from $\Sigma$, which is the input alphabet.
$(p,\beta)\in\delta(q,a,Z)$ means that if the automaton is in state $q$ with input $a$ and $Z$ on the top of the stack, it goes to state $p$ and replaces $Z$ with $\beta$, where $\beta\in\Gamma^*$ is a finite string of stack symbols. In other words, it pops the single symbol $Z$ and pushes the string $\beta$ onto the stack.
In the statement $(q,aw,Z\alpha)\vdash(p,w,\beta\alpha)$, $\alpha$ is the rest of the stack ‘under’ $Z$; the statement says that if the automaton is in state $p$ with stack contents $Z\alpha$ (so that $Z$ is on the top of the stack), reading an input $aw$, it can make a direct transition to state $p$, reading an input $w$, with $\beta\alpha$ on the stack. In other words, it has read the single character $a\in\Sigma$, leaving as input the remaining string $w\in\Sigma^*$, it has popped the single character $Z\in\Gamma$ from the stack, leaving $\alpha\in\Gamma^*$ still on the stack, and it has pushed $\beta\in\Gamma^*$ onto the stack as well, so that the stack now contains the string $\beta\alpha\in\Gamma^*$.