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:- The empty language Ø, and the empty string language are regular languages.
- For each a ∈ Σ, the singleton language is a regular language.
- If A and B are regular languages, then A ∪ B, A • B, and A* are regular languages.
- No other languages over Σ are regular.
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:- it is the language of a regular expression
- it is the language accepted by a nondeterministic finite automaton
- it is the language accepted by a deterministic finite automaton
- it can be generated by a regular grammar
- it is the language accepted by an alternating finite automaton
- it is the language accepted by a two-way finite automaton
- it can be generated by a prefix grammar
- it can be accepted by a read-only Turing machine
- it can be defined in monadic second-order logic
- 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
- the number of equivalence classes of its syntactic congruence is finite.
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:- the set theoretic Boolean operations: union K ∪ L, intersection K ∩ L, and complement, hence also relative complement K - L.
- the regular operations: K ∪ L, concatenation K ∘ L, and Kleene star L*.
- the trio operations: string homomorphism, inverse string homomorphism, and intersection with regular languages. As a consequence they are closed under arbitrary finite state transductions, like quotient K / L with a regular language. Even more, regular languages are closed under quotients with arbitrary languages: If L is regular then L / K is regular for any K.
- the reverse LR. Given a nondeterministic finite automaton to recognize L, an automaton for LR can be obtained by reversing all transitions and interchanging starting and finishing states. This may result in multiple starting states; ε-transitions can be used to join them.
Decidability properties
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:
- Containment: is LA ⊆ LB ?
- Disjointness: is LA ∩ LB = ?
- Emptiness: is LA = ?
- Universality: is LA = Σ* ?
- Membership: given a ∈ Σ*, is a ∈ LB ?
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. REGULAR ≠ AC0, 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 aImportant subclasses of regular languages include
- Finite languages, those containing only a finite number of words. These are regular languages, as one can create a regular expression that is the union of every word in the language.
- Star-free languages, those that can be described by a regular expression constructed from the empty symbol, letters, concatenation and all boolean operators including complementation but not the Kleene star: this class includes all finite languages.
The number of words in a regular language
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.