Kleene star
From Wikipedia, the free encyclopedia
In mathematical logic and computer science, the Kleene star (or Kleene closure) is a unary operation, either on sets of strings or on sets of symbols or characters. The application of the Kleene star to a set V is written as V*. It is widely used for regular expressions, which is the context in which it was introduced by Stephen Kleene to characterise certain automata.
- If V is a set of strings then V* is defined as the smallest superset of V that contains ε (the empty string) and is closed under the string concatenation operation. This set can also be described as the set of strings that can be made by concatenating zero or more strings from V.
- If V is a set of symbols or characters then V* is the set of all strings over symbols in V, including the empty string.
Contents |
[edit] Set-theoretic Definition and Notation
<math>V^* = 1 \cup V \cup V^2 \cup V^3 \cup ...</math>
- 1 denotes the identity event, the set <math>\{\varepsilon\}</math> containing only the empty string.
- 0 denotes the empty event <math>\varnothing</math>.
[edit] Examples
Example of Kleene star applied to set of strings:
- {"ab", "c"}* = {ε, "ab", "c", "abab", "abc", "cab", "cc", "ababab", "ababc", "abcab", "abcc", "cabab", "cabc", "ccab", "ccc", ...}
Example of Kleene star applied to set of characters:
- {'a', 'b', 'c'}* = {ε, "a", "b", "c", "aa", "ab", "ac", "ba", "bb", "bc", ...}
[edit] Generalization
The Kleene star is often generalized for any monoid (M, <math>\circ</math>), that is, a set M and binary operation <math>\circ</math> on M such that
- (closure) <math>\forall a,b \in M:~ a \circ b \in M</math>
- (associativity) <math>\forall a,b,c \in M:~ (a \circ b) \circ c = a \circ (b \circ c)</math>
- (identity) <math>\exists \epsilon \in M:~ \forall a \in M:~ a \circ \epsilon = a = \epsilon \circ a</math>
If V is a subset of M, then V* is defined as the smallest superset of V that contains ε (the empty string) and is closed under the operation. V* is then itself a monoid, and is called the monoid generated by V. This is a generalization of the Kleene star discussed above since the set of all strings over some set of symbols forms a monoid (with string concatenation as binary operation).
[edit] See also
- Kleene algebra
- Extended Backus-Naur form
- Pumping Lemma
- Star height problem, generalized star height problem, star-free language
- Regular expressionsde:Kleenesche Hülle
el:Αστέρι Κλέινι es:Clausura de Kleene fr:Fermeture de Kleene it:Star di Kleene ja:クリーネ閉包 pl:Domknięcie Kleene'ego ro:Kleene star

