By using deterministic finite automata, a finite automata for the original language, construct one for the cyclic shift. The new automaton operates in two stages, corresponding to the and the part of the word where is in the original language.
In the first stage, whenever the automaton would like to pop a non-terminal it can instead push a non-terminal , the idea is that at the end of the first stage, the stack would contain, in reverse order, the symbols that are found in the stack after reading by the original automaton. In the second stage (the switch is non-deterministic), instead of pushing a non-terminal , are allowed to pop a non-terminal .
If the original automaton can indeed generate the stack upon reading, then the new one would be able to exactly pop the entire stack.
Here suppose we are given a deterministic finite automaton with alphabet , set of states, set of accepting states, non-terminals, initial state, and a set of allowable transitions. Each allowable transition is of the form meaning that when in state, upon and the new deterministic finite automata has a new non-terminal for each.
Hence, the rotational closure of language A to beis closed under rotational closure for regular language.