Regular language


In theoretical computer science and formal language theory, a regular language is a formal language that can be expressed using a regular expression, in the strict sense of the latter notion used in theoretical computer science.
Alternatively, a regular language can be defined as a language recognized by a finite automaton. The equivalence of regular expressions and finite automata is known as Kleene's theorem. In the Chomsky hierarchy, regular languages are defined to be the languages that are generated by Type-3 grammars.
Regular languages are very useful in input parsing and programming language design.

Formal definition

The collection of regular languages over an alphabet Σ is defined recursively as follows:
See regular expression for its syntax and semantics. Note that the [|above] cases are in effect the defining rules of regular expression.

Examples

All finite languages are regular; in particular the empty string language = Ø* is regular. Other typical examples include the language consisting of all strings over the alphabet which contain an even number of as, or the language consisting of all strings of the form: several as followed by several bs.
A simple example of a language that is not regular is the set of strings. Intuitively, it cannot be recognized with a finite automaton, since a finite automaton has finite memory and it cannot remember the exact number of a's. Techniques to prove this fact rigorously are given [|below].

Equivalent formalisms

A regular language satisfies the following equivalent properties:
  1. it is the language of a regular expression
  2. it is the language accepted by a nondeterministic finite automaton
  3. it is the language accepted by a deterministic finite automaton
  4. it can be generated by a regular grammar
  5. it is the language accepted by an alternating finite automaton
  6. it is the language accepted by a two-way finite automaton
  7. it can be generated by a prefix grammar
  8. it can be accepted by a read-only Turing machine
  9. it can be defined in monadic second-order logic
  10. it is recognized by some finite monoid M, meaning it is the preimage of a subset S of a finite monoid M under a monoid homomorphism f: Σ*M from the free monoid on its alphabet
  11. the number of equivalence classes of its syntactic congruence is finite.
Properties 10. and 11. are purely algebraic approaches to define regular languages; a similar set of statements can be formulated for a monoid M⊂Σ*. In this case, equivalence over M leads to the concept of a recognizable language.
Some authors use one of the above properties different from "1." as an alternative definition of regular languages.
Some of the equivalences above, particularly those among the first four formalisms, are called Kleene's theorem in textbooks. Precisely which one is called such varies between authors. One textbook calls the equivalence of regular expressions and NFAs "Kleene's theorem". Another textbook calls the equivalence of regular expressions and DFAs "Kleene's theorem". Two other textbooks first prove the expressive equivalence of NFAs and DFAs and then state "Kleene's theorem" as the equivalence between regular expressions and finite automata. A linguistically oriented text first equates regular grammars with DFAs and NFAs, calls the languages generated by these "regular", after which it introduces regular expressions which it terms to describe "rational languages", and finally states "Kleene's theorem" as the coincidence of regular and rational languages. Other authors simply define "rational expression" and "regular expressions" as synonymous and do the same with "rational languages" and "regular languages".

Closure properties

The regular languages are closed under various operations, that is, if the languages K and L are regular, so is the result of the following operations:
Given two deterministic finite automata A and B, it is decidable whether they accept the same language.
As a consequence, using the above closure properties, the following problems are also decidable for arbitrarily given deterministic finite automata A and B, with accepted languages LA and LB, respectively:
For regular expressions, the universality problem is NP-complete already for a singleton alphabet.
For larger alphabets, that problem is PSPACE-complete. If regular expressions are extended to allow also a squaring operator, with "A2" denoting the same as "AA", still just regular languages can be described, but the universality problem has an exponential space lower bound, and is in fact complete for exponential space with respect to polynomial-time reduction.

Complexity results

In computational complexity theory, the complexity class of all regular languages is sometimes referred to as REGULAR or REG and equals DSPACE, the decision problems that can be solved in constant space. REGULARAC0, since it contains the parity problem of determining whether the number of 1 bits in the input is even or odd and this problem is not in AC0. On the other hand, REGULAR does not contain AC0, because the nonregular language of palindromes, or the nonregular language can both be recognized in AC0.
If a language is not regular, it requires a machine with at least Ω space to recognize. In other words, DSPACE equals the class of regular languages. In practice, most nonregular problems are solved by machines taking at least logarithmic space.

Location in the Chomsky hierarchy

To locate the regular languages in the Chomsky hierarchy, one notices that every regular language is context-free. The converse is not true: for example the language consisting of all strings having the same number of a's as b's is context-free but not regular. To prove that a language such as this is not regular, one often uses the Myhill–Nerode theorem or the pumping lemma among other methods.
Important subclasses of regular languages include
Let denote the number of words of length in. The ordinary generating function for L is the formal power series
The generating function of a language L is a rational function if L is regular. Hence for every regular language the sequence is constant-recursive; that is, there exist an integer constant, complex constants and complex polynomials
such that for every the number of words of length in is
Thus, non-regularity of certain languages can be proved by counting the words of a given length in
. Consider, for example, the Dyck language of strings of balanced parentheses. The number of words of length
in the Dyck language is equal to the Catalan number, which is not of the form,
witnessing the non-regularity of the Dyck language. Care must be taken since some of the eigenvalues could have the same magnitude. For example, the number of words of length in the language of all even binary words is not of the form, but the number of words of even or odd length are of this form; the corresponding eigenvalues are. In general, for every regular language there exists a constant such that for all, the number of words of length is asymptotically.
The zeta function of a language L is
The zeta function of a regular language is not in general rational, but that of an arbitrary cyclic language is.

Generalizations

The notion of a regular language has been generalized to infinite words and to trees.
Rational set generalizes the notion to monoids that are not necessarily free. Likewise, the notion of a recognizable language has namesake as recognizable set over a monoid that is not necessarily free. Howard Straubing notes in relation to these facts that “The term "regular language" is a bit unfortunate. Papers influenced by Eilenberg's monograph often use either the term "recognizable language", which refers to the behavior of automata, or "rational language", which refers to important analogies between regular expressions and rational power series. This terminology, while better motivated, never really caught on, and "regular language" is used almost universally.”
Rational series is another generalization, this time in the context of a formal power series over a semiring. This approach gives rise to weighted rational expressions and weighted automata. In this algebraic context, the regular languages are usually called rational languages. Also in this context, Kleene's theorem finds a generalization called the Kleene-Schützenberger theorem.

Induction