Suppose the PDA P = ({q,p},{0,1},{Z₀,X},δ,q,Z₀,{p})
has the following transition function:
1. δ(0,0,Z₀) = {(q,XZ₀)}.
2. δ(9,0,X) = {(q,XX)}.
3. δ(9,1,X) = {(q,X)}.
4. δ(9,∊,X) = {(p,∊)}.
5. δ(p,∊,X) = {(p,∊)}.
6. δ(p,1,X) = {(p,XX)}.
7. δ(p,1,Z₀) = {(p,∊)}
Starting from the initial ID (q,w,Z₀), show all the reachable ID's when the input w is:
a. 01.
b. 0011.
c. 010.