I need to show that the given regular language is closed under the following operation.
For example:
AllSuffixes(L) = {v : uv in L for some u in (0+1)* }
I do not have any idea about this question. I only know that regular languages are closed under + , . and * operations.
Do you have any idea(a solution way or a clue)?
One approach is to start with a DFA that recognizes $L$ and has no inaccessible states. Now add empty transitions from the initial state to each other state and show that the resulting NFA does what you want.
You can also approach it via regular grammars. Start with a regular grammar for $L$. If $S$ is the initial symbol, add a production $S\to X$ for each accessible non-terminal symbol $X$ other than $S$. This is basically exactly the same idea. In both cases the idea is to let the machine/grammar start at any point that the original machine/grammar could have reached from the initial state/symbol.