Regular language explained
In theoretical computer science and formal language theory, a regular language (also called a rational language) is a formal language that can be defined by a regular expression, in the strict sense in theoretical computer science (as opposed to many modern regular expression engines, which are augmented with features that allow the recognition of non-regular languages).
Alternatively, a regular language can be defined as a language recognised by a finite automaton. The equivalence of regular expressions and finite automata is known as Kleene's theorem[1] (after American mathematician Stephen Cole Kleene). In the Chomsky hierarchy, regular languages are the languages generated by Type-3 grammars.
Formal definition
The collection of regular languages over an alphabet Σ is defined recursively as follows:
- The empty language Ø is a regular language.
- For each a ∈ Σ (a belongs to Σ), the singleton language is a regular language.
- If A is a regular language, A* (Kleene star) is a regular language. Due to this, the empty string language is also regular.
- If A and B are regular languages, then A ∪ B (union) and A • B (concatenation) are regular languages.
- No other languages over Σ are regular.
See regular expression for syntax and semantics of regular expressions.
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 a's, or the language consisting of all strings of the form: several a's followed by several b's.
A simple example of a language that is not regular is the set of strings .[2] 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 (by the above definition)
- it is the language accepted by a nondeterministic finite automaton (NFA)[3] [4]
- it is the language accepted by a deterministic finite automaton (DFA)[5] [6]
- it can be generated by a regular grammar[7] [8]
- 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 (Büchi–Elgot–Trakhtenbrot theorem)[9]
- it is recognized by some finite syntactic 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[10]
- the number of equivalence classes of its syntactic congruence is finite.[11] [12] (This number equals the number of states of the minimal deterministic finite automaton accepting L.)
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 (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".[13] Another textbook calls the equivalence of regular expressions and DFAs ("1." and "3." above) "Kleene's theorem".[14] 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").[15] [16] 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.[17] Other authors simply define "rational expression" and "regular expressions" as synonymous and do the same with "rational languages" and "regular languages".[18] [15]
Apparently, the term "regular" originates from a 1951 technical report where Kleene introduced "regular events" and explicitly welcomed "any suggestions as to a more descriptive term".[19] Noam Chomsky, in his 1959 seminal article, used the term "regular" in a different meaning at first (referring to what is called "Chomsky normal form" today),[20] but noticed that his "finite state languages" were equivalent to Kleene's "regular events".[21]
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, intersection, and complement, hence also relative complement .[22]
- the regular operations:, concatenation, and Kleene star .[23]
- 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.[24]
- the reverse (or mirror image) LR.[25] 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
Given two deterministic finite automata A and B, it is decidable whether they accept the same language.[26] 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 ?[27]
- Disjointness: is LA ∩ LB = ?
- Emptiness: is LA = ?
- Universality: is LA = Σ* ?
- Membership: given a ∈ Σ*, is a ∈ LB ?
For regular expressions, the universality problem is NP-complete already for a singleton alphabet.[28] For larger alphabets, that problem is PSPACE-complete.[29] 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,[30] [31] [32] and is in fact complete for exponential space with respect to polynomial-time reduction.[33]
For a fixed finite alphabet, the theory of the set of all languages — together with strings, membership of a string in a language, and for each character, a function to append the character to a string (and no other operations) — is decidable, and its minimal elementary substructure consists precisely of regular languages. For a binary alphabet, the theory is called S2S.[34]
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). REGULAR ≠ AC0, 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.[35] 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.
[36] 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).[37] 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 is not regular, one often uses the Myhill–Nerode theorem and the pumping lemma. Other approaches include using the closure properties of regular languages[38] or quantifying Kolmogorov complexity.[39]
Important subclasses of regular languages include
- Finite languages, those containing only a finite number of words.[40] 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 (see algebra of sets) including complementation but not the Kleene star: this class includes all finite languages.[41]
The number of words in a regular language
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.[42] 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
.
[43] [44] [45] [46] 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
.
[47] The zeta function of a language L is[42]
\zetaL(z)=\exp\left({\sumnsL(n)
}\right).
The zeta function of a regular language is not in general rational, but that of an arbitrary cyclic language is.[48] [49]
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[50] 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.”[51]
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.[52] [53] Also in this context, Kleene's theorem finds a generalization called the Kleene-Schützenberger theorem.
Learning from examples
See main article: Induction of regular languages.
References
- Book: Berstel . Jean . Jean Berstel . Reutenauer . Christophe . Noncommutative rational series with applications . Encyclopedia of Mathematics and Its Applications . 137 . Cambridge . . 2011 . 978-0-521-19022-0 . 1250.68007 .
- Book: Eilenberg . Samuel . Samuel Eilenberg . Automata, Languages, and Machines. Volume A . Pure and Applied Mathematics . 58 . 1974 . Academic Press . New York . 0317.94045 .
- Book: Salomaa, Arto . Arto Salomaa . Jewels of Formal Language Theory . Pitman Publishing . 0-273-08522-0 . 1981 . 0487.68064 .
- Book: Sipser, Michael . Michael Sipser . 1997 . Introduction to the Theory of Computation . PWS Publishing . 0-534-94728-X . 1169.68300 . Introduction to the Theory of Computation . Chapter 1: Regular Languages, pp. 31–90. Subsection "Decidable Problems Concerning Regular Languages" of section 4.1: Decidable Languages, pp. 152–155.
- Philippe Flajolet and Robert Sedgewick, Analytic Combinatorics: Symbolic Combinatorics. Online book, 2002.
- Book: John E. Hopcroft . Jeffrey D. Ullman . Introduction to Automata Theory, Languages, and Computation. 1979. Addison-Wesley. 0-201-02988-X. Introduction to Automata Theory, Languages, and Computation .
- Book: Alfred V. Aho and John E. Hopcroft and Jeffrey D. Ullman . The Design and Analysis of Computer Algorithms . registration . Addison-Wesley . 1974 . 9780201000290 .
Further reading
- Kleene, S.C.: Representation of events in nerve nets and finite automata. In: Shannon, C.E., McCarthy, J. (eds.) Automata Studies, pp. 3–41. Princeton University Press, Princeton (1956); it is a slightly modified version of his 1951 RAND Corporation report of the same title, RM704.
- Book: Sakarovitch . J . Trends, Techniques, and Problems in Theoretical Computer Science . 1987. Kleene's theorem revisited . 1987 . 39–50 . 10.1007/3540185356_29 . Lecture Notes in Computer Science . 978-3-540-18535-2 .
Notes and References
- Book: Grzegorz Rozenberg . Arto Salomaa . Handbook of Formal Languages: Volume 1. Word, Language, Grammar. https://books.google.com/books?id=yQ59ojndUt4C&pg=PA41. 1997. Springer. 978-3-540-60420-4. 41. Sheng Yu. Regular languages.
- Eilenberg (1974), p. 16 (Example II, 2.8) and p. 25 (Example II, 5.2).
- 1. ⇒ 2. by Thompson's construction algorithm
- 2. ⇒ 1. by Kleene's algorithm or using Arden's lemma
- 2. ⇒ 3. by the powerset construction
- 3. ⇒ 2. since the former definition is stronger than the latter
- 2. ⇒ 4. see Hopcroft, Ullman (1979), Theorem 9.2, p.219
- 4. ⇒ 2. see Hopcroft, Ullman (1979), Theorem 9.1, p.218
- M. Weyer: Chapter 12 - Decidability of S1S and S2S, p. 219, Theorem 12.26. In: Erich Grädel, Wolfgang Thomas, Thomas Wilke (Eds.): Automata, Logics, and Infinite Games: A Guide to Current Research. Lecture Notes in Computer Science 2500, Springer 2002.
- 3. ⇔ 10. by the Myhill–Nerode theorem
- u~v is defined as: uw∈L if and only if vw∈L for all w∈Σ*
- 3. ⇔ 11. see the proof in the Syntactic monoid article, and see p.160 in Book: Holcombe, W.M.L. . Algebraic automata theory . 0489.68046 . Cambridge Studies in Advanced Mathematics . 1 . . 1982 . 0-521-60492-3 .
- Book: Robert Sedgewick. Kevin Daniel Wayne. Algorithms. 2011. Addison-Wesley Professional. 978-0-321-57351-3. 794.
- Book: Jean-Paul Allouche. Jeffrey Shallit. Automatic Sequences: Theory, Applications, Generalizations. 2003. Cambridge University Press. 978-0-521-82332-6. 129.
- Book: Mark V. Lawson. Finite Automata. 2003. CRC Press. 978-1-58488-255-8. 98–103.
- Book: Kenneth Rosen. Discrete Mathematics and Its Applications 7th edition. 2011. McGraw-Hill Science. 873–880.
- Book: Horst Bunke. Alberto Sanfeliu. Syntactic and Structural Pattern Recognition: Theory and Applications. January 1990. World Scientific. 978-9971-5-0566-0. 248.
- Book: Ruslan Mitkov. The Oxford Handbook of Computational Linguistics. 2003. Oxford University Press. 978-0-19-927634-9. 754.
- Representation of Events in Nerve Nets and Finite Automata . Stephen Cole Kleene . U.S. Air Force / RAND Corporation . Research Memorandum . RM-704 . Dec 1951 . Here: p.46
- On Certain Formal Properties of Grammars . Noam Chomsky . Information and Control . 2 . 137 - 167 . 1959 . 2 . 10.1016/S0019-9958(59)90362-6 . free . Here: Definition 8, p.149
- Chomsky 1959, Footnote 10, p.150
- Salomaa (1981) p.28
- Salomaa (1981) p.27
- Fellows . Michael R. . Michael Fellows . Langston . Michael A. . Michael Langston . Myers . J. Paul Jr. . O'Donnell . Michael J. . Constructivity issues in graph algorithms . 10.1007/BFB0021088 . 150–158 . Springer . Lecture Notes in Computer Science . Constructivity in Computer Science, Summer Symposium, San Antonio, Texas, USA, June 19-22, Proceedings . 613 . 1991.
- Hopcroft, Ullman (1979), Chapter 3, Exercise 3.4g, p. 72
- Hopcroft, Ullman (1979), Theorem 3.8, p.64; see also Theorem 3.10, p.67
- Check if LA ∩ LB = LA. Deciding this property is NP-hard in general; see for an illustration of the proof idea.
- Aho, Hopcroft, Ullman (1974), Exercise 10.14, p.401
- Aho, Hopcroft, Ullman (1974), Theorem 10.14, p399
- Hopcroft, Ullman (1979), Theorem 13.15, p.351
- Book: The Equivalence Problem for Regular Expressions with Squaring Requires Exponential Space . A.R. Meyer . L.J. Stockmeyer . amp . 13th Annual IEEE Symp. on Switching and Automata Theory . 125–129 . Oct 1972 .
- Book: Proc. 5th ann. symp. on Theory of computing (STOC) . L. J. Stockmeyer . A. R. Meyer . Word Problems Requiring Exponential Time . ACM . 1–9 . 1973 .
- Hopcroft, Ullman (1979), Corollary p.353
- Book: Weyer, Mark . 2002 . Automata, Logics, and Infinite Games . Decidability of S1S and S2S . Lecture Notes in Computer Science . 2500 . 207–230 . https://link.springer.com/chapter/10.1007/3-540-36387-4_12 . 10.1007/3-540-36387-4_12 . Springer. 978-3-540-00388-5 .
- Furst . Merrick . Saxe . James B. . James B. Saxe . Sipser . Michael . Michael Sipser . 10.1007/BF01744431 . 1 . Mathematical Systems Theory . 738749 . 13–27 . Parity, circuits, and the polynomial-time hierarchy . 17 . 1984. 14677270 .
- Book: Cook. Stephen. Nguyen. Phuong. Logical foundations of proof complexity. 2010. Association for Symbolic Logic. Ithaca, NY. 978-0-521-51729-4. 75. 1. publ..
- J. Hartmanis, P. L. Lewis II, and R. E. Stearns. Hierarchies of memory-limited computations. Proceedings of the 6th Annual IEEE Symposium on Switching Circuit Theory and Logic Design, pp. 179–190. 1965.
- Web site: How to prove that a language is not regular?. 10 April 2018. cs.stackexchange.com.
- Book: Hromkovič, Juraj. Theoretical computer science: Introduction to Automata, Computability, Complexity, Algorithmics, Randomization, Communication, and Cryptography. 2004. Springer. 3-540-14015-8. 76–77. 53007120.
- A finite language shouldn't be confused with a (usually infinite) language generated by a finite automaton.
- Book: Jörg Flum . Erich Grädel . Thomas Wilke . Logic and automata: history and perspectives. 2008. Amsterdam University Press. 978-90-5356-576-6. http://www.lsv.ens-cachan.fr/Publis/PAPERS/PDF/DG-WT08.pdf. First-order definable languages. Volker Diekert . Paul Gastin .
- 0675.68034 . Honkala . Juha . A necessary condition for the rationality of the zeta function of a regular language . Theor. Comput. Sci. . 66 . 3 . 341–347 . 1989 . 10.1016/0304-3975(89)90159-x . free .
- Flajolet & Sedgweick, section V.3.1, equation (13).
- Web site: Number of words in the regular language $(00)^*$. cs.stackexchange.com. 10 April 2018.
- Web site: Proof of theorem for arbitrary DFAs.
- Web site: Number of words of a given length in a regular language. cs.stackexchange.com. 10 April 2018.
- Flajolet & Sedgewick (2002) Theorem V.3
- 0797.68092 . Berstel . Jean . Reutenauer . Christophe . Zeta functions of formal languages . Trans. Am. Math. Soc. . 321 . 2 . 533–546 . 1990 . 10.1090/s0002-9947-1990-0998123-x. 10.1.1.309.3005 .
- Berstel & Reutenauer (2011) p.222
- Book: Samuel Eilenberg. Automata, languages, and machines. Academic Press. in two volumes "A" (1974,) and "B" (1976,), the latter with two chapters by Bret Tilson.
- Book: Straubing, Howard . Finite automata, formal logic, and circuit complexity . registration . Progress in Theoretical Computer Science . Basel . Birkhäuser . 1994 . 3-7643-3719-2 . 0816.68086 . 8 .
- Berstel & Reutenauer (2011) p.47
- Book: Sakarovitch, Jacques . Elements of automata theory . Translated from the French by Reuben Thomas . Cambridge . . 2009 . 978-0-521-84425-3 . 1188.68177 . 86 .