HOME

TheInfoList



OR:

In mathematics,
computer science Computer science is the study of computation, automation, and information. Computer science spans theoretical disciplines (such as algorithms, theory of computation, information theory, and automation) to practical disciplines (includin ...
, and
logic Logic is the study of correct reasoning. It includes both formal and informal logic. Formal logic is the science of deductively valid inferences or of logical truths. It is a formal science investigating how conclusions follow from premis ...
, rewriting covers a wide range of methods of replacing subterms of a formula with other terms. Such methods may be achieved by rewriting systems (also known as rewrite systems, rewrite engines, or reduction systems). In their most basic form, they consist of a set of objects, plus relations on how to transform those objects. Rewriting can be non-deterministic. One rule to rewrite a term could be applied in many different ways to that term, or more than one rule could be applicable. Rewriting systems then do not provide an
algorithm In mathematics and computer science, an algorithm () is a finite sequence of rigorous instructions, typically used to solve a class of specific problems or to perform a computation. Algorithms are used as specifications for performing ...
for changing one term to another, but a set of possible rule applications. When combined with an appropriate algorithm, however, rewrite systems can be viewed as
computer program A computer program is a sequence or set of instructions in a programming language for a computer to execute. Computer programs are one component of software, which also includes documentation and other intangible components. A computer progra ...
s, and several theorem provers and declarative programming languages are based on term rewriting.


Example cases


Logic

In
logic Logic is the study of correct reasoning. It includes both formal and informal logic. Formal logic is the science of deductively valid inferences or of logical truths. It is a formal science investigating how conclusions follow from premis ...
, the procedure for obtaining the
conjunctive normal form In Boolean logic, a formula is in conjunctive normal form (CNF) or clausal normal form if it is a conjunction of one or more clauses, where a clause is a disjunction of literals; otherwise put, it is a product of sums or an AND of ORs. As a cano ...
(CNF) of a formula can be implemented as a rewriting system. The rules of an example of such a system would be: :\neg\neg A \to A (
double negation elimination In propositional logic, double negation is the theorem that states that "If a statement is true, then it is not the case that the statement is not true." This is expressed by saying that a proposition ''A'' is logically equivalent to ''not (no ...
) :\neg(A \land B) \to \neg A \lor \neg B (
De Morgan's laws In propositional logic and Boolean algebra, De Morgan's laws, also known as De Morgan's theorem, are a pair of transformation rules that are both valid rules of inference. They are named after Augustus De Morgan, a 19th-century British mathem ...
) :\neg(A \lor B) \to \neg A \land\neg B : (A \land B) \lor C \to (A \lor C) \land (B \lor C) ( distributivity) : A \lor (B \land C) \to (A \lor B) \land (A \lor C),This variant of the previous rule is needed since the commutative law ''A''∨''B'' = ''B''∨''A'' cannot be turned into a rewrite rule. A rule like ''A''∨''B'' → ''B''∨''A'' would cause the rewrite system to be nonterminating. where the symbol (\to) indicates that an expression matching the left hand side of the rule can be rewritten to one formed by the right hand side, and the symbols each denote a subexpression. In such a system, each rule is chosen so that the left side is equivalent to the right side, and consequently when the left side matches a subexpression, performing a rewrite of that subexpression from left to right maintains logical consistency and value of the entire expression.


Arithmetic

Term rewriting systems can be employed to compute arithmetic operations on
natural number In mathematics, the natural numbers are those numbers used for counting (as in "there are ''six'' coins on the table") and ordering (as in "this is the ''third'' largest city in the country"). Numbers used for counting are called '' cardinal ...
s. To this end, each such number has to be encoded as a term. The simplest encoding is the one used in the Peano axioms, based on the constant 0 (zero) and the successor function ''S''. For example, the numbers 0, 1, 2, and 3 are represented by the terms 0, S(0), S(S(0)), and S(S(S(0))), respectively. The following term rewriting system can then be used to compute sum and product of given natural numbers. : \begin A + 0 &\to A & \textrm, \\ A + S(B) &\to S (A + B) & \textrm, \\ A \cdot 0 &\to 0 & \textrm, \\ A \cdot S(B) &\to A + (A \cdot B) & \textrm. \end For example, the computation of 2+2 to result in 4 can be duplicated by term rewriting as follows: :S(S(0)) + S(S(0)) \;\;\stackrel\;\; S( \; S(S(0)) + S(0) \; ) \;\;\stackrel\;\; S(S( \; S(S(0)) + 0 \; )) \;\;\stackrel\;\; S(S( S(S(0)) )), where the rule numbers are given above the ''rewrites-to'' arrow. As another example, the computation of 2⋅2 looks like: :S(S(0)) \cdot S(S(0)) \;\;\stackrel\;\; S(S(0)) + S(S(0)) \cdot S(0) \;\;\stackrel\;\; S(S(0)) + S(S(0)) + S(S(0)) \cdot 0 \;\;\stackrel\;\; S(S(0)) + S(S(0)) + 0 \;\;\stackrel\;\; S(S(0)) + S(S(0)) \;\;\stackrel\;\; S(S( S(S(0)) )), where the last step comprises the previous example computation.


Linguistics

In
linguistics Linguistics is the scientific study of human language. It is called a scientific study because it entails a comprehensive, systematic, objective, and precise analysis of all aspects of language, particularly its nature and structure. Lingu ...
, phrase structure rules, also called rewrite rules, are used in some systems of
generative grammar Generative grammar, or generativism , is a linguistic theory that regards linguistics as the study of a hypothesised innate grammatical structure. It is a biological or biologistic modification of earlier structuralist theories of linguistic ...
, as a means of generating the grammatically correct sentences of a language. Such a rule typically takes the form \rm A \rightarrow X, where A is a
syntactic category A syntactic category is a syntactic unit that theories of syntax assume. Word classes, largely corresponding to traditional parts of speech (e.g. noun, verb, preposition, etc.), are syntactic categories. In phrase structure grammars, the ''phrasal ...
label, such as
noun phrase In linguistics, a noun phrase, or nominal (phrase), is a phrase that has a noun or pronoun as its head or performs the same grammatical function as a noun. Noun phrases are very common cross-linguistically, and they may be the most frequently o ...
or sentence, and X is a sequence of such labels or
morpheme A morpheme is the smallest meaningful constituent of a linguistic expression. The field of linguistic study dedicated to morphemes is called morphology. In English, morphemes are often but not necessarily words. Morphemes that stand alone ar ...
s, expressing the fact that A can be replaced by X in generating the constituent structure of a sentence. For example, the rule \rm S \rightarrow NP\ VP means that a sentence can consist of a noun phrase (NP) followed by a
verb phrase In linguistics, a verb phrase (VP) is a syntactic unit composed of a verb and its arguments except the subject of an independent clause or coordinate clause. Thus, in the sentence ''A fat man quickly put the money into the box'', the words ''qu ...
(VP); further rules will specify what sub-constituents a noun phrase and a verb phrase can consist of, and so on.


Abstract rewriting systems

From the above examples, it is clear that we can think of rewriting systems in an abstract manner. We need to specify a set of objects and the rules that can be applied to transform them. The most general (unidimensional) setting of this notion is called an ''abstract reduction system''Book and Otto, p. 10 or ''abstract rewriting system'' (abbreviated ''ARS''). An ARS is simply a set ''A'' of objects, together with a
binary relation In mathematics, a binary relation associates elements of one set, called the ''domain'', with elements of another set, called the ''codomain''. A binary relation over Set (mathematics), sets and is a new set of ordered pairs consisting of ele ...
→ on ''A'' called the ''reduction relation'', ''rewrite relation'' or just ''reduction''. Many notions and notations can be defined in the general setting of an ARS. \overset\rightarrow is the
reflexive transitive closure In mathematics, a subset of a given set is closed under an operation of the larger set if performing that operation on members of the subset always produces a member of that subset. For example, the natural numbers are closed under addition, but ...
of \rightarrow. \leftrightarrow is the symmetric closure of \rightarrow. \overset is the reflexive transitive symmetric closure of \rightarrow. The word problem for an ARS is determining, given ''x'' and ''y'', whether x \overset y. An object ''x'' in ''A'' is called ''reducible'' if there exists some other ''y'' in ''A'' such that x \rightarrow y; otherwise it is called ''irreducible'' or a normal form. An object ''y'' is called a "normal form of ''x''" if x \stackrel y, and ''y'' is irreducible. If the normal form of ''x'' is unique, then this is usually denoted with x. If every object has at least one normal form, the ARS is called ''normalizing''. x \downarrow y or ''x'' and ''y'' are said to be ''joinable'' if there exists some ''z'' with the property that x \overset z \overset y. An ARS is said to possess the
Church–Rosser property In computer science, confluence is a property of rewriting systems, describing which terms in such a system can be rewritten in more than one way, to yield the same result. This article describes the properties in the most abstract setting of an a ...
if x \overset y implies x \downarrow y. An ARS is confluent if for all ''w'', ''x'', and ''y'' in ''A'', x \overset w \overset y implies x \downarrow y. An ARS is ''locally confluent'' if and only if for all ''w'', ''x'', and ''y'' in ''A'', x \leftarrow w \rightarrow y implies x\mathbin\downarrow y. An ARS is said to be ''terminating'' or ''noetherian'' if there is no infinite chain x_0 \rightarrow x_1 \rightarrow x_2 \rightarrow \cdots. A confluent and terminating ARS is called ''convergent'' or ''canonical''. Important theorems for abstract rewriting systems are that an ARS is confluent
iff In logic and related fields such as mathematics and philosophy, "if and only if" (shortened as "iff") is a biconditional logical connective between statements, where either both statements are true or both are false. The connective is bicondi ...
it has the Church-Rosser property, Newman's lemma which states that a terminating ARS is confluent if and only if it is locally confluent, and that the word problem for an ARS is undecidable in general.


String rewriting systems

A ''string rewriting system'' (SRS), also known as ''semi-Thue system'', exploits the free monoid structure of the strings (words) over an
alphabet An alphabet is a standardized set of basic written graphemes (called letters) that represent the phonemes of certain spoken languages. Not all writing systems represent language in this way; in a syllabary, each character represents a s ...
to extend a rewriting relation, R, to ''all'' strings in the alphabet that contain left- and respectively right-hand sides of some rules as substrings. Formally a semi-Thue system is a
tuple In mathematics, a tuple is a finite ordered list (sequence) of elements. An -tuple is a sequence (or ordered list) of elements, where is a non-negative integer. There is only one 0-tuple, referred to as ''the empty tuple''. An -tuple is defi ...
(\Sigma, R) where \Sigma is a (usually finite) alphabet, and R is a binary relation between some (fixed) strings in the alphabet, called the set of ''rewrite rules''. The ''one-step rewriting relation'' \underset\rightarrow induced by R on \Sigma^* is defined as: if s, t \in \Sigma^* are any strings, then s \underset\rightarrow t if there exist x, y, u, v \in \Sigma^* such that s = xuy, t = xvy, and u R v. Since \underset\rightarrow is a relation on \Sigma^*, the pair (\Sigma^*, \underset\rightarrow) fits the definition of an abstract rewriting system. Obviously R is a subset of \underset\rightarrow. If the relation R is
symmetric Symmetry (from grc, συμμετρία "agreement in dimensions, due proportion, arrangement") in everyday language refers to a sense of harmonious and beautiful proportion and balance. In mathematics, "symmetry" has a more precise definit ...
, then the system is called a ''Thue system''. In a SRS, the reduction relation \overset\underset\rightarrow is compatible with the monoid operation, meaning that x \overset\underset\rightarrow y implies uxv \overset\underset\rightarrow uyv for all strings x, y, u, v \in \Sigma^*. Similarly, the reflexive transitive symmetric closure of \underset\rightarrow, denoted \overset, is a
congruence Congruence may refer to: Mathematics * Congruence (geometry), being the same size and shape * Congruence or congruence relation, in abstract algebra, an equivalence relation on an algebraic structure that is compatible with the structure * In mod ...
, meaning it is an
equivalence relation In mathematics, an equivalence relation is a binary relation that is reflexive, symmetric and transitive. The equipollence relation between line segments in geometry is a common example of an equivalence relation. Each equivalence relatio ...
(by definition) and it is also compatible with string concatenation. The relation \overset\underset \leftrightarrow is called the ''Thue congruence'' generated by R. In a Thue system, i.e. if R is symmetric, the rewrite relation \overset\underset\rightarrow coincides with the Thue congruence \overset. The notion of a semi-Thue system essentially coincides with the presentation of a monoid. Since \overset is a congruence, we can define the
factor monoid In mathematics, a semigroup is an algebraic structure consisting of a set together with an associative internal binary operation on it. The binary operation of a semigroup is most often denoted multiplicatively: ''x''·''y'', or simply ''xy'', ...
\mathcal_R = \Sigma^*/\overset of the free monoid \Sigma^* by the Thue congruence. If a monoid \mathcal is isomorphic with \mathcal_R, then the semi-Thue system (\Sigma, R) is called a monoid presentation of \mathcal. We immediately get some very useful connections with other areas of algebra. For example, the alphabet \ with the rules \, where \varepsilon is the
empty string In formal language theory, the empty string, or empty word, is the unique string of length zero. Formal theory Formally, a string is a finite, ordered sequence of characters such as letters, digits or spaces. The empty string is the special cas ...
, is a presentation of the
free group In mathematics, the free group ''F'S'' over a given set ''S'' consists of all words that can be built from members of ''S'', considering two words to be different unless their equality follows from the group axioms (e.g. ''st'' = ''suu''− ...
on one generator. If instead the rules are just \, then we obtain a presentation of the bicyclic monoid. Thus semi-Thue systems constitute a natural framework for solving the word problem for monoids and groups. In fact, every monoid has a presentation of the form (\Sigma, R), i.e. it may always be presented by a semi-Thue system, possibly over an infinite alphabet. The word problem for a semi-Thue system is undecidable in general; this result is sometimes known as the ''Post-Markov theorem''.


Term rewriting systems

A term rewriting system (TRS) is a rewriting system whose objects are '' terms'', which are expressions with nested sub-expressions. For example, the system shown under ' above is a term rewriting system. The terms in this system are composed of binary operators (\vee) and (\wedge) and the unary operator (\neg). Also present in the rules are variables, which represent any possible term (though a single variable always represents the same term throughout a single rule). In contrast to string rewriting systems, whose objects are sequences of symbols, the objects of a term rewriting system form a term algebra. A term can be visualized as a tree of symbols, the set of admitted symbols being fixed by a given
signature A signature (; from la, signare, "to sign") is a Handwriting, handwritten (and often Stylization, stylized) depiction of someone's name, nickname, or even a simple "X" or other mark that a person writes on documents as a proof of identity and ...
.


Formal definition

A ''rewrite rule'' is a pair of terms, commonly written as l \rightarrow r, to indicate that the left-hand side can be replaced by the right-hand side . A ''term rewriting system'' is a set of such rules. A rule l \rightarrow r can be ''applied'' to a term if the left term matches some
subterm In mathematical logic, a term denotes a mathematical object while a formula denotes a mathematical fact. In particular, terms appear as components of a formula. This is analogous to natural language, where a noun phrase refers to an object and a wh ...
of , that is, if there is some substitution \sigma such that the subterm of s rooted at some
position Position often refers to: * Position (geometry), the spatial location (rather than orientation) of an entity * Position, a job or occupation Position may also refer to: Games and recreation * Position (poker), location relative to the dealer * ...
is the result of applying the substitution \sigma to the term . The subterm matching the left hand side of the rule is called a redex or reducible expression. The result term of this rule application is then the result of replacing the subterm at position in by the term r with the substitution \sigma applied, see picture 1. In this case, s is said to be ''rewritten in one step'', or ''rewritten directly'', to t by the system R, formally denoted as s \rightarrow_R t, s \underset\rightarrow t, or as s \overset\rightarrow t by some authors. If a term t_1 can be rewritten in several steps into a term t_n, that is, if t_1 \underset\rightarrow t_2 \underset\rightarrow \cdots \underset\rightarrow t_n, the term t_1 is said to be ''rewritten'' to t_n, formally denoted as t_1 \overset\underset\rightarrow t_n. In other words, the relation \overset\underset\rightarrow is the
transitive closure In mathematics, the transitive closure of a binary relation on a set is the smallest relation on that contains and is transitive. For finite sets, "smallest" can be taken in its usual sense, of having the fewest related pairs; for infinit ...
of the relation \underset\rightarrow; often, also the notation \overset\underset\rightarrow is used to denote the reflexive-transitive closure of \underset\rightarrow, that is, s \overset\underset\rightarrow t if s = t or A term rewriting given by a set R of rules can be viewed as an abstract rewriting system as defined above, with terms as its objects and \underset\rightarrow as its rewrite relation. For example, x*(y*z) \rightarrow (x*y)*z is a rewrite rule, commonly used to establish a normal form with respect to the associativity of *. That rule can be applied at the numerator in the term \frac with the matching substitution \, see picture 2.since applying that substitution to the rule's left hand side x*(y*z) yields the numerator a*((a+1)*(a+2)) Applying that substitution to the rule's right-hand side yields the term (a*(a+1))*(a+2), and replacing the numerator by that term yields \frac, which is the result term of applying the rewrite rule. Altogether, applying the rewrite rule has achieved what is called "applying the associativity law for * to \frac" in elementary algebra. Alternately, the rule could have been applied to the denominator of the original term, yielding \frac.


Termination

Termination issues of rewrite systems in general are handled in '' Abstract rewriting system#Termination and convergence''. For term rewriting systems in particular, the following additional subtleties are to be considered. Termination even of a system consisting of one rule with a
linear Linearity is the property of a mathematical relationship ('' function'') that can be graphically represented as a straight line. Linearity is closely related to '' proportionality''. Examples in physics include rectilinear motion, the linear ...
left-hand side is undecidable. Termination is also undecidable for systems using only unary function symbols; however, it is decidable for finite
ground Ground may refer to: Geology * Land, the surface of the Earth not covered by water * Soil, a mixture of clay, sand and organic matter present on the surface of the Earth Electricity * Ground (electricity), the reference point in an electrical c ...
systems. The following term rewrite system is normalizing,i.e. for each term, some normal form exists, e.g. ''h''(''c'',''c'') has the normal forms ''b'' and ''g''(''b''), since ''h''(''c'',''c'') → ''f''(''h''(''c'',''c''),''h''(''c'',''c'')) → ''f''(''h''(''c'',''c''),''f''(''h''(''c'',''c''),''h''(''c'',''c''))) → ''f''(''h''(''c'',''c''),''g''(''h''(''c'',''c''))) → ''b'', and ''h''(''c'',''c'') → ''f''(''h''(''c'',''c''),''h''(''c'',''c'')) → ''g''(''h''(''c'',''c''),''h''(''c'',''c'')) → ... → ''g''(''b''); neither ''b'' nor ''g''(''b'') can be rewritten any further, therefore the system is not confluent but not terminating,i.e., there are infinite derivations, e.g. ''h''(''c'',''c'') → ''f''(''h''(''c'',''c''),''h''(''c'',''c'')) → ''f''(''f''(''h''(''c'',''c''),''h''(''c'',''c'')) ,''h''(''c'',''c'')) → ''f''(''f''(''f''(''h''(''c'',''c''),''h''(''c'',''c'')),''h''(''c'',''c'')) ,''h''(''c'',''c'')) → ... and not confluent: \begin f(x,x) & \rightarrow g(x) , \\ f(x,g(x)) & \rightarrow b , \\ h(c,x) & \rightarrow f(h(x,c),h(x,x)) . \\ \end The following two examples of terminating term rewrite systems are due to Toyama: :f(0,1,x) \rightarrow f(x,x,x) and :g(x,y) \rightarrow x, :g(x,y) \rightarrow y. Their union is a non-terminating system, since \begin & f(g(0,1),g(0,1),g(0,1)) \\ \rightarrow & f(0,g(0,1),g(0,1)) \\ \rightarrow & f(0,1,g(0,1)) \\ \rightarrow & f(g(0,1),g(0,1),g(0,1)) \\ \rightarrow & \cdots \end This result disproves a conjecture of Dershowitz, who claimed that the union of two terminating term rewrite systems R_1 and R_2 is again terminating if all left-hand sides of R_1 and right-hand sides of R_2 are
linear Linearity is the property of a mathematical relationship ('' function'') that can be graphically represented as a straight line. Linearity is closely related to '' proportionality''. Examples in physics include rectilinear motion, the linear ...
, and there are no "''overlaps''" between left-hand sides of R_1 and right-hand sides of R_2. All these properties are satisfied by Toyama's examples. See
Rewrite order In theoretical computer science, in particular in automated reasoning about formal equations, reduction orderings are used to prevent endless loops. Rewrite orders, and, in turn, rewrite relations, are generalizations of this concept that have tur ...
and Path ordering (term rewriting) for ordering relations used in termination proofs for term rewriting systems.


Higher-order rewriting systems

Higher-order rewriting systems are a generalization of first-order term rewriting systems to lambda terms, allowing higher order functions and bound variables. Various results about first-order TRSs can be reformulated for HRSs as well.


Graph rewriting systems

Graph rewrite systems are another generalization of term rewrite systems, operating on graphs instead of (
ground Ground may refer to: Geology * Land, the surface of the Earth not covered by water * Soil, a mixture of clay, sand and organic matter present on the surface of the Earth Electricity * Ground (electricity), the reference point in an electrical c ...
-) terms / their corresponding
tree In botany, a tree is a perennial plant with an elongated stem, or trunk, usually supporting branches and leaves. In some usages, the definition of a tree may be narrower, including only woody plants with secondary growth, plants that are ...
representation.


Trace rewriting systems

Trace theory In mathematics and computer science, trace theory aims to provide a concrete mathematical underpinning for the study of concurrent computation and process calculi. The underpinning is provided by an algebraic definition of the free partially co ...
provides a means for discussing multiprocessing in more formal terms, such as via the
trace monoid In computer science, a trace is a set of strings, wherein certain letters in the string are allowed to commute, but others are not. It generalizes the concept of a string, by not forcing the letters to always be in a fixed order, but allowing certa ...
and the history monoid. Rewriting can be performed in trace systems as well.


Philosophy

Rewriting systems can be seen as programs that infer end-effects from a list of cause-effect relationships. In this way, rewriting systems can be considered to be automated
causality Causality (also referred to as causation, or cause and effect) is influence by which one event, process, state, or object (''a'' ''cause'') contributes to the production of another event, process, state, or object (an ''effect'') where the ca ...
provers.


See also

* Critical pair (logic) *
Compiler In computing, a compiler is a computer program that translates computer code written in one programming language (the ''source'' language) into another language (the ''target'' language). The name "compiler" is primarily used for programs that ...
*
Knuth–Bendix completion algorithm The Knuth–Bendix completion algorithm (named after Donald Knuth and Peter Bendix) is a semi-decision algorithm for transforming a set of equations (over terms) into a confluent term rewriting system. When the algorithm succeeds, it effective ...
*
L-system An L-system or Lindenmayer system is a parallel rewriting system and a type of formal grammar. An L-system consists of an alphabet of symbols that can be used to make strings, a collection of production rules that expand each symbol into som ...
s specify rewriting that is done in parallel. *
Referential transparency In computer science, referential transparency and referential opacity are properties of parts of computer programs. An expression is called ''referentially transparent'' if it can be replaced with its corresponding value (and vice-versa) witho ...
in computer science * Regulated rewriting * Rho calculus


Notes


Further reading

* 316 pages. * Marc Bezem, Jan Willem Klop,
Roel de Vrijer Roel son of almighty Zeus and beautiful mortal Alcmene, was the strongest man who ever lived. Now when Roel was eight months old, he woke one night to find a monstrous snake had coiled itself around him. Instead of crying out, baby Roel wrapped his ...
("Terese"), ''Term Rewriting Systems'' ("TeReSe"), Cambridge University Press, 2003, . This is the most recent comprehensive monograph. It uses however a fair deal of non-yet-standard notations and definitions. For instance, the Church–Rosser property is defined to be identical with confluence. * Nachum Dershowitz and Jean-Pierre Jouannaudbr>"Rewrite Systems"
Chapter 6 in Jan van Leeuwen (Ed.), '' Handbook of Theoretical Computer Science, Volume B: Formal Models and Semantics.'', Elsevier and MIT Press, 1990, , pp. 243–320. The
preprint In academic publishing, a preprint is a version of a scholarly or scientific paper that precedes formal peer review and publication in a peer-reviewed scholarly or scientific journal. The preprint may be available, often as a non-typeset version ...
of this chapter is freely available from the authors, but it is missing the figures. * Nachum Dershowitz and
David Plaisted David Alan Plaisted is a computer science professor at the University of North Carolina at Chapel Hill. Research interests Plaisted's research interests include term rewriting systems, automated theorem proving, logic programming, and algorithm ...

"Rewriting"
Chapter 9 in John Alan Robinson and
Andrei Voronkov Andrei Anatolievič Voronkov (born 1959) is a Professor of Formal methods in the Department of Computer Science at the University of Manchester. Education Voronkov was educated at Novosibirsk State University, graduating with a PhD in 1987. ...
(Eds.), ''
Handbook of Automated Reasoning The ''Handbook of Automated Reasoning'' (, 2128 pages) is a collection of survey articles on the field of automated reasoning. Published in June 2001 by MIT Press, it is edited by John Alan Robinson and Andrei Voronkov. Volume 1 describes method ...
, Volume 1''. *
Gérard Huet Gérard Pierre Huet (; born 7 July 1947) is a French computer scientist, linguist and mathematician. He is senior research director at INRIA and mostly known for his major and seminal contributions to type theory, programming language theory an ...
et Derek Oppen
Equations and Rewrite Rules, A Survey
(1980) Stanford Verification Group, Report N° 15 Computer Science Department Report N° STAN-CS-80-785 * Jan Willem Klop. "Term Rewriting Systems", Chapter 1 in Samson Abramsky, Dov M. Gabbay and Tom Maibaum (Eds.), ''
Handbook of Logic in Computer Science A handbook is a type of reference work, or other collection of instructions, that is intended to provide ready reference. The term originally applied to a small or portable book containing information useful for its owner, but the '' Oxford En ...
, Volume 2: Background: Computational Structures''. * David Plaisted
"Equational reasoning and term rewriting systems"
in Dov M. Gabbay, C. J. Hogger and John Alan Robinson (Eds.), '' Handbook of Logic in Artificial Intelligence and Logic Programming, Volume 1''. * Jürgen Avenhaus and Klaus Madlener. "Term rewriting and equational reasoning". In Ranan B. Banerji (Ed.), ''Formal Techniques in Artificial Intelligence: A Sourcebook'', Elsevier (1990). ; String rewriting * Ronald V. Book and Friedrich Otto, ''String-Rewriting Systems'', Springer (1993). * Benjamin Benninghofen, Susanne Kemmerich and Michael M. Richter, ''Systems of Reductions''.
LNCS ''Lecture Notes in Computer Science'' is a series of computer science books published by Springer Science+Business Media since 1973. Overview The series contains proceedings, post- proceedings, monographs, and Festschrift In academia, a ''F ...
277, Springer-Verlag (1987). ; Other *
Martin Davis Martin Davis may refer to: * Martin Davis (Australian footballer) (born 1936), Australian rules footballer * Martin Davis (Jamaican footballer) (born 1996), Jamaican footballer * Martin Davis (mathematician) Martin David Davis (March 8, 1928 � ...
, Ron Sigal, Elaine J. Weyuker, (1994) ''Computability, Complexity, and Languages: Fundamentals of Theoretical Computer Science – 2nd edition'', Academic Press, .


External links

* Th
Rewriting Home Page

IFIP Working Group 1.6

Researchers in rewriting
by
Aart Middeldorp Aart is a Dutch short form of the given name Arnout (English Arnold).Aart
at the
University of Innsbruck The University of Innsbruck (german: Leopold-Franzens-Universität Innsbruck; la, Universitas Leopoldino Franciscea) is a public research university in Innsbruck, the capital of the Austrian federal state of Tyrol, founded on October 15, 1669. ...

Termination Portal

Maude System
— a software implementation of a generic term rewriting system.


References

{{Authority control Formal languages Logic in computer science Mathematical logic Rewriting systems