A formal language is a set of words, i.e. finite strings of letters, symbols, or tokens. The set from which these letters are taken is called the alphabet over which the language is defined. A formal language is often defined by means of a formal grammar (also called its formation rules); accordingly, words that belong to a formal language are sometimes called well-formed words (or well-formed formulas). Formal languages are studied in computer science and linguistics; the field of formal language theory studies the purely syntactical aspects of such languages (that is, their internal structural patterns).
Formal languages are often used as the basis for richer
constructs endowed with semantics. In computer science they are used, among
other things, for the precise definition of data formats and the syntax of programming languages. Formal
languages play a crucial role in the development of compilers, typically produced
by means of a compiler
compiler, which may be a single program or may be separated in
tools like lexical analyzer generators (e.g. lex), and parser generators (e.g. yacc). Since formal languages
alone do not have a semantics, other formal constructs are needed
for the formal specification of program
semantics. Formal languages are also used in logic and in foundations of mathematics
to represent the syntax of formal theories. Logical systems can be seen as a formal
language with additional constructs, like proof calculi, which
define a consequence
relation.[1] "Tarski's definition
of truth" in terms of a T-schema for first-order logic is an example of
fully interpreted formal language; all its sentences have
meanings that make them either true or false.
Contents |
An alphabet, in the context of formal languages can be any set, although it often makes sense to use an alphabet in the usual sense of the word, or more generally a character set such as ASCII. Alphabets can also be infinite; e.g. first-order logic is often expressed using an alphabet which, besides symbols such as ∧, ¬, ∀ and parentheses, contains infinitely many elements x0, x1, x 2, … that play the role of variables. The elements of an alphabet are called its letters.
A word over an alphabet can be any finite sequence, or string, of letters. The set of all words over an alphabet Σ is usually denoted by Σ* (using the Kleene star). For any alphabet there is only one word of length 0, the empty word, which is often denoted by e, ε or λ. By concatenation one can combine two words to form a new word, whose length is the sum of the lengths of the original words. The result of concatenating a word with the empty word is the original word.
In some applications, especially in logic, the alphabet is also known as the vocabulary and words are known as formulas or sentences; this breaks the letter/word metaphor and replaces it by a word/sentence metaphor.
A formal language L over an alphabet Σ is just a subset of Σ*, that is, a set of words over that alphabet.
In computer science and mathematics, which do not usually deal with natural languages, the adjective "formal" is often omitted as redundant.
While formal language theory usually concerns itself with formal languages that are described by some syntactical rules, the actual definition of the concept "formal language" is only as above: a (possibly infinite) set of finite-length strings, no more nor less. In practice, there are many languages that can be described by rules, such as regular languages or context-free languages. The notion of a formal grammar may be closer to the intuitive concept of a "language," one described by syntactic rules. By an abuse of the definition, a particular formal language is often thought of as being equipped with a formal grammar that describes it.
The following rules describe a formal language L over the alphabet Σ = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, +, =}:
Under these rules, the string "23+4=555" is in L, but the string "=234=+" is not. This formal language expresses natural numbers, well-formed addition statements, and well-formed addition equalities, but it expresses only what they look like (their syntax), not what they mean (semantics). For instance, nowhere in these rules is there any indication that 0 means the number zero, or that + means addition.
For finite languages one can simply enumerate all well-formed words. For example, we can describe a language L as just L = {"a", "b", "ab", "cba"}.
However, even over a finite (non-empty) alphabet such as Σ = {a, b} there are infinitely many words: "a", "abb", "ababba", "aaababbbbaab", …. Therefore formal languages are typically infinite, and describing an infinite formal language is not as simple as writing L = {"a", "b", "ab", "cba"}. Here are some examples of formal languages:
Formal language theory rarely concerns itself with particular languages (except as examples), but is mainly concerned with the study of various types of formalisms to describe languages. For instance, a language can be given as
Typical questions asked about such formalisms include:
Surprisingly often, the answer to these decision problems is "it cannot be done at all", or "it is extremely expensive" (with a precise characterization of how expensive exactly). Therefore, formal language theory is a major application area of computability theory and complexity theory. Formal languages may be classified in the Chomsky hierarchy based on the expressive power of their generative grammar as well as the complexity of their recognizing automaton. Context-free grammars and regular grammars provide a good compromise between expressivity and ease of parsing, and are widely used in practical applications.
Certain operations on languages are common. This includes the standard set operations, such as union, intersection, and complement. Another class of operation is the element-wise application of string operations.
Examples: suppose L1 and L2 are languages over some common alphabet.
Such string operations are used to investigate closure properties of classes of languages. A class of languages is closed under a particular operation when the operation, applied to languages in the class, always produces a language in the same class again. For instance, the context-free languages are known to be closed under union, concatenation, and intersection with regular languages, but not closed under intersection or complement.
| Operation | regular | DCFL | CFL | CSL | recursive | r.e. | |
| Union | ![]() |
Yes | No | Yes | Yes | Yes | Yes |
| Intersection | ![]() |
Yes | No | No | Yes | Yes | Yes |
| Complement | ![]() |
Yes | Yes | No | Yes | Yes | No |
| Concatenation | ![]() |
Yes | No | Yes | Yes | Yes | Yes |
| Kleene star | ![]() |
Yes | No | Yes | Yes | Yes | Yes |
| Homomorphism | Yes | No | Yes | No | No | Yes | |
| e-free Homomorphism | Yes | No | Yes | Yes | Yes | Yes | |
| Substitution | Yes | No | Yes | Yes | No | Yes | |
| Inverse Homomorphism | Yes | Yes | Yes | Yes | Yes | Yes | |
| Reverse | ![]() |
Yes | No | Yes | Yes | Yes | Yes |
| Intersection with a Regular Language | ![]() |
Yes | Yes | Yes | Yes | Yes | Yes |
A compiler usually has two distinct components. A lexical analyzer, generated by a tool like
lex, identifies the tokens of
the programming language grammar, e.g. identifiers or keywords, which are
themselves expressed in a simpler formal language, usually by means
of regular expressions. At the most basic
conceptual level, a parser, usually generated by a parser generator like yacc, attempts to decide if the source
program is valid, that is if it belongs to the programming language
for which the compiler was built. Of course, compilers do more than
just parse the source code—they usually translate it in some
executable format. Because of this, a parser usually outputs more
than a yes/no answer, typically an abstract syntax tree, which is
used by subsequent stages of the compiler to eventually generate an
executable containing
machine code that
runs directly on the hardware, or some intermediate code
that requires a virtual machine to execute.
A formal theory is a set of sentences expressed in a formal language.
A formal system (also called a logical
calculus, or a logical system) consists of a formal
language together with a deductive
apparatus (also called a deductive system). The
deductive apparatus may consist of a set of transformation rules which may be
interpreted as valid rules of inference or a set of axioms, or have both. A formal
system is used to derive one expression from one or more
other expressions. Although a formal language can be identified
with its formulas, a formal system cannot be likewise identified by
its theorems. Two formal
systems
and
may have all the same theorems and yet differ in some significant
proof-theoretic way (a formula A may be a syntactic consequence of
a formula B in one but not another for instance).
A formal proof or derivation is a finite sequence of well-formed formulas (which may be interpreted as propositions) each of which is an axiom or follows from the preceding formulas in the sequence by a rule of inference. The last sentence in the sequence is a theorem of a formal system. Formal proofs are useful because their theorems can be interpreted as true propositions.
Formal languages are entirely syntactic in nature but may be given semantics that give meaning to the elements of the language. Formal languages are useful in logic because they have formulas that can be interpreted as expressing logical truths. An interpretation of a formal language is the assignment of meanings to its symbols and formulas.
Model theory is the theory of interpretations of formal languages. The study of interpretations is called formal semantics. Giving an interpretation is synonymous with constructing a model. A model of a formula of a formal language is an interpretation of the language for which the formula comes out to be true.
A possible interpretation of
would be to take "
"
as meaning the same as the decimal digit "1", "
"
as meaning the same as the digit "0", and each formula as meaning
the same as a decimal numeral composed exclusively of "1"s and
"0"s. Therefore "
"
means "101" under this interpretation of
.[3]
| Automata theory: formal languages and formal grammars | |||
|---|---|---|---|
| Chomsky hierarchy | Grammars | Languages | Minimal automaton |
| Type-0 | Unrestricted | Recursively enumerable | Turing machine |
| n/a | (no common name) | Recursive | Decider |
| Type-1 | Context-sensitive | Context-sensitive | Linear-bounded |
| n/a | Indexed | Indexed | Nested stack |
| n/a | Tree-adjoining etc. | (Mildly context-sensitive) | Embedded pushdown |
| Type-2 | Context-free | Context-free | Nondeterministic pushdown |
| n/a | Deterministic context-free | Deterministic context-free | Deterministic pushdown |
| Type-3 | Regular | Regular | Finite |
| n/a | n/a | Star-free | Aperiodic finite |
| Each category of
languages or grammars is a proper
subset of the category directly above it. Any automaton in each category has an equivalent automaton in the category directly above it. |
|||
| The English used in this article or section may not be easy for everybody to understand. You can help Wikipedia by making this page or section simpler. |
In mathematics, logic, and computer science, a formal language is a language that is defined in a precise mathematical way. A language is defined using a set called the alphabet of the language. The members of the alphabet are usually called symbols of the language. The language is a set of sequences of symbols of the alphabet. The sequences usually have finite length. The sequences that are members of the language are called the words of the language or strings.
A precise definition is that a formal language is typically characterized as an ordered pair of sets . is the alphabet, and each element of is a sequence of elements.
Formal languages have lots of uses. A formal language is often thought of as:
or
In the first case, the set is called the alphabet of , and the elements of are called words. In the second, the set is called the lexicon or the vocabulary of , while the elements of are then called sentences. The mathematical theory that treats formal languages in general is known as formal language theory.
Although it is common to hear the term formal language meaning natural language that is more stilted, disciplined or precise than everyday speech, this article refers to the meaning in formal language theory, in maths, logic or computer science.
As an example of formal language, an alphabet might be . One string over that alphabet is .
A typical language over that alphabet, containing that string, would be the set of all strings which contain the same number of symbols and .
The empty word (that is, length-zero string) is allowed and is often denoted by , or . While the alphabet is a finite set and every string has finite length, a language may very well have infinitely many member strings. This is because the length of words belonging to it may be unbounded.
A question often asked about formal languages is "how difficult is it to decide whether a given word belongs to a particular language?" This is the kind of question that computability theory and complexity theory ask.
Contents |
Some examples of formal languages:
A formal language can be specified in a great variety of ways, such as:
|
|