Regular language
|
|
This article may require cleanup to meet Wikipedia's quality standards. (December 2008) |
In theoretical computer science and formal language theory, a regular language is a formal language that can be expressed using a regular expression. Note that the "regular expression" features provided with many programming languages are augmented with features that make them capable of recognizing languages that can not be expressed by the formal regular expressions (as formally defined below).
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.
Contents |
Formal definition [edit]
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 {a} is a regular language.
- If A and B are regular languages, then A ∪ B (union), A • B (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
.[1] 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.
Equivalence to other formalisms [edit]
A regular language satisfies the following equivalent properties:
- it is the language accepted by a nondeterministic finite automaton
- it is the language accepted by a deterministic finite automaton
- it is the language accepted by an alternating finite automaton
- it can be generated by a regular grammar
- 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[2])
- it is recognized by some finite monoid, meaning it is the preimage of a subset of a finite monoid under a homomorphism from the free monoid on its alphabet (see Myhill–Nerode theorem).
The above properties are sometimes used as alternative definition of regular languages.
Closure properties [edit]
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
, intersection
, and complement
. From this also relative complement
follows.[3] - the regular operations: union
, concatenation
, and Kleene star
.[4] - 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
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)
.
Deciding whether a language is regular [edit]
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.[5]
There are two purely algebraic approaches to define regular languages. If:
- Σ is a finite alphabet,
- Σ* denotes the free monoid over Σ consisting of all strings over Σ,
- f : Σ* → M is a monoid homomorphism where M is a finite monoid,
- S is a subset of M
then the set
is regular. Every regular language arises in this fashion.
If L is any subset of Σ*, one defines an equivalence relation ~ (called the syntactic relation) on Σ* as follows: u ~ v is defined to mean
- uw ∈ L if and only if vw ∈ L for all w ∈ Σ*
The language L is regular if and only if the number of equivalence classes of ~ is finite (A proof of this is provided in the article on the syntactic monoid). When a language is regular, then the number of equivalence classes is equal to the number of states of the minimal deterministic finite automaton accepting L.
A similar set of statements can be formulated for a monoid
. In this case, equivalence over M leads to the concept of a recognizable language.
Complexity results [edit]
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.[6] 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.[7]
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).[8] 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.
Subclasses [edit]
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.[9]
- Cyclic languages, satisfying the conditions
and
.[10]
The number of words in a regular language [edit]
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.[10] Hence for any regular language
there exist an integer constant
, complex constants
and complex polynomials
such that for every
the number
of words of length
in
is
.[11][12][13][14]
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
.[15]
The zeta function of a language L is[10]
The zeta function of a regular language is not in general rational, but that of a cyclic language is.[16]
Generalizations [edit]
The notion of a regular language has been generalized to infinite words (see ω-automata) and to trees (see tree automaton).
See also [edit]
References [edit]
- Eilenberg, Samuel (1974). Automata, Languages, and Machines. Volume A. Pure and Applied Mathematics 58. New York: Academic Press. Zbl 0317.94045.
- Salomaa, Arto (1981). Jewels of Formal Language Theory. Pitman Publishing. ISBN 0-273-08522-0. Zbl 0487.68064.
- Sipser, Michael (1997). Introduction to the Theory of Computation. PWS Publishing. ISBN 0-534-94728-X. Zbl 1169.68300. 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.
- ^ Eilenberg (1974), p. 16 (Example II, 2.8) and p. 25 (Example II, 5.2).
- ^ 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.
- ^ Salomaa (1981) p.28
- ^ Salomaa (1981) p.27
- ^ How to prove that a language is not regular?
- ^ M. Furst, J. B. Saxe, and M. Sipser. Parity, circuits, and the polynomial-time hierarchy. Math. Systems Theory, 17:13–27, 1984.
- ^ Cook, Stephen; Nguyen, Phuong (2010). Logical foundations of proof complexity (1. publ. ed.). Ithaca, NY: Association for Symbolic Logic. p. 75. ISBN 0-521-51729-X.
- ^ 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.
- ^ Volker Diekert, Paul Gastin (2008). "First-order definable languages". In Jörg Flum, Erich Grädel, Thomas Wilke. Logic and automata: history and perspectives. Amsterdam University Press. ISBN 978-90-5356-576-6. Unknown parameter
|unused_data=ignored (help) - ^ a b c Honkala, Juha (1989). "A necessary condition for the rationality of the zeta function of a regular language". Theor. Comput. Sci. 66 (3): 341–347. Zbl 0675.68034.
- ^ Flajolet & Sedgweick, section V.3.1, equation (13).
- ^ Proof of theorem for irreducible DFAs
- ^ http://cs.stackexchange.com/a/11333/683 Proof of theorem for arbitrary DFAs
- ^ Number of words of a given length in a regular language
- ^ Flajolet & Sedgewick (2002, Theorem V.3)
- ^ Berstel, Christophe; Reutenauer (1990). "Zeta functions of formal languages". Trans. Am. Math. Soc. 321 (2): 533–546. Zbl 0797.68092.
External links [edit]
|
||||||||
,
, and
. From this also
follows.
, and
.
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.
.
and
.
