Girish Mahajan (Editor)

Regular language

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In theoretical computer science and formal language theory, a regular language (also called a rational 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 (as opposed to many regular expressions engines provided by modern programming languages, which are augmented with features that allow recognition of languages that cannot be expressed by a classic regular expression).

Contents

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 (after American mathematician Stephen Cole Kleene). In the Chomsky hierarchy, regular languages are defined to be the languages that are generated by Type-3 grammars (regular 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 ∈ Σ (a belongs to Σ), the singleton language {a} is a regular language.
  • If A and B are regular languages, then AB (union), AB (concatenation), and A* (Kleene star) are regular languages.
  • No other languages over Σ are regular.
  • 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 {a, b} 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 { anbn | n ≥ 0 }. 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 (by the above definition)
    2. it is the language accepted by a nondeterministic finite automaton (NFA)
    3. it is the language accepted by a deterministic finite automaton (DFA)
    4. it can be generated by a regular grammar
    5. it is the language accepted by an alternating finite automaton
    6. it can be generated by a prefix grammar
    7. it can be accepted by a read-only Turing machine
    8. it can be defined in monadic second-order logic (Büchi-Elgot-Trakhtenbrot theorem)
    9. it is recognized by some finite monoid M, meaning it is the preimage { w∈Σ* | f(w)∈S } of a subset S of a finite monoid M under a monoid homomorphism f: Σ*M from the free monoid on its alphabet
    10. the number of equivalence classes of its "syntactic relation" ~ is finite (this number equals the number of states of the minimal deterministic finite automaton accepting L.)

    Properties 9. and 10. 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 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 (or which subset) is called such varies between authors. One textbook calls the equivalence of regular expressions and NFAs ("1." and "2." above) "Kleene's theorem". Another textbook calls the equivalence of regular expressions and DFAs ("1." and "3." above) "Kleene's theorem". Two other textbooks first prove the expressive equivalence of NFAs and DFAs ("2." and "3.") and then state "Kleene's theorem" as the equivalence between regular expressions and finite automata (the latter said to describe "recognizable languages"). A linguistically oriented text first equates regular grammars ("4." above) with DFAs and NFAs, calls the languages generated by (any of) 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 the 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 KL, intersection KL, and complement L, hence also relative complement K-L.
  • the regular operations: KL, concatenation KL, 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 (or mirror image) LR.
  • Decidability properties

    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:

  • Containment: is LALB ?
  • Disjointness: is LALB = {} ?
  • Emptiness: is LA = {} ?
  • Universality: is LA = Σ* ?
  • Membership: given a ∈ Σ*, is aLB ?
  • 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(O(1)), the decision problems that can be solved in constant space (the space used is independent of the input size). REGULARAC0, since it (trivially) 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 { 0 n 1 n : n N } can both be recognized in AC0.

    If a language is not regular, it requires a machine with at least Ω(log log n) space to recognize (where n is the input size). In other words, DSPACE(o(log log n)) 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

  • 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.
  • Cyclic languages, satisfying the conditions uvLvuL and wLw nL.
  • The number of words in a regular language

    Let s L ( n ) denote the number of words of length n in L . The ordinary generating function for L is the formal power series

    S L ( z ) = n 0 s L ( n ) z n   .

    The generating function of a language L is a rational function if L is regular. Hence for any regular language L there exist an integer constant n 0 , complex constants λ 1 , , λ k and complex polynomials p 1 ( x ) , , p k ( x ) such that for every n n 0 the number s L ( n ) of words of length n in L is s L ( n ) = p 1 ( n ) λ 1 n + + p k ( n ) λ k n .

    Thus, non-regularity of certain languages L can be proved by counting the words of a given length in L . Consider, for example, the Dyck language of strings of balanced parentheses. The number of words of length 2 n in the Dyck language is equal to the Catalan number C n 4 n n 3 / 2 π , which is not of the form p ( n ) λ n , witnessing the non-regularity of the Dyck language. Care must be taken since some of the eigenvalues λ i could have the same magnitude. For example, the number of words of length n in the language of all even binary words is not of the form p ( n ) λ n , but the number of words of even or odd length are of this form; the corresponding eigenvalues are 2 , 2 . In general, for every regular language there exists a constant d such that for all a , the number of words of length d m + a is asymptotically C a m p a λ a m .

    The zeta function of a language L is

    ζ L ( z ) = exp ( n 0 s L ( n ) z n n )   .

    The zeta function of a regular language is not in general rational, but that of a cyclic language is.

    Generalizations

    The notion of a regular language has been generalized to infinite words (see ω-automata) and to trees (see tree automaton).

    Rational set generalizes the notion (of regular/rational language) to monoids that are not necessarily free. Likewise, the notion of a recognizable language (by a finite automaton) 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. (In fact, Eilenberg defines rational and recognizable subsets of arbitrary monoids; the two notions do not, in general, coincide.) 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 (corresponding to Boolean-weighted rational expressions) are usually called rational languages. Also in this context, Kleene's theorem finds a generalization called the Kleene-Schützenberger theorem.

    References

    Regular language Wikipedia