Rewrite rule
   HOME

TheInfoList



OR:

In
mathematics Mathematics is an area of knowledge that includes the topics of numbers, formulas and related structures, shapes and the spaces in which they are contained, and quantities and their changes. These topics are represented in modern 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 Applied science, practical discipli ...
, 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 prem ...
, rewriting covers a wide range of methods of replacing subterms of a
formula In science, a formula is a concise way of expressing information symbolically, as in a mathematical formula or a ''chemical formula''. The informal use of the term ''formula'' in science refers to the general construct of a relationship betwe ...
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 Execution (computing), execute. Computer programs are one component of software, which also includes software documentation, documentation and oth ...
s, and several theorem provers and
declarative programming language In computer science, declarative programming is a programming paradigm—a style of building the structure and elements of computer programs—that expresses the logic of a computation without describing its control flow. Many languages that a ...
s 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 prem ...
, the procedure for obtaining the conjunctive normal form (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 ( ...
) :\neg(A \land B) \to \neg A \lor \neg B ( De Morgan's laws) :\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 In mathematics, the successor function or successor operation sends a natural number to the next one. The successor function is denoted by ''S'', so ''S''(''n'') = ''n'' +1. For example, ''S''(1) = 2 and ''S''(2) = 3. The successor functio ...
''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. Ling ...
,
phrase structure rule Phrase structure rules are a type of rewrite rule used to describe a given language's syntax and are closely associated with the early stages of transformational grammar, proposed by Noam Chomsky in 1957. They are used to break down a natural lan ...
s, 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 linguisti ...
, 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 label, such as noun phrase or sentence, and X is a sequence of such labels or
morpheme A morpheme is the smallest meaningful Constituent (linguistics), constituent of a linguistic expression. The field of linguistics, linguistic study dedicated to morphemes is called morphology (linguistics), morphology. In English, morphemes are ...
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 (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 sets and is a new set of ordered pairs consisting of elements in and in ...
→ 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 of \rightarrow. \leftrightarrow is the symmetric closure of \rightarrow. \overset is the
reflexive transitive symmetric 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. 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 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 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 syllab ...
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, 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, 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 In algebra, a presentation of a monoid (or a presentation of a semigroup) is a description of a monoid (or a semigroup) in terms of a set of generators and a set of relations on the free monoid (or the free semigroup ) generated by . The monoid ...
. Since \overset is a congruence, we can define the factor monoid \mathcal_R = \Sigma^*/\overset of the free monoid \Sigma^* by the Thue congruence. If a monoid \mathcal is
isomorphic In mathematics, an isomorphism is a structure-preserving mapping between two structures of the same type that can be reversed by an inverse mapping. Two mathematical structures are isomorphic if an isomorphism exists between them. The word i ...
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 c ...
, is a presentation of the free group on one generator. If instead the rules are just \, then we obtain a presentation of the
bicyclic monoid In mathematics, the bicyclic semigroup is an algebraic object important for the structure theory of semigroups. Although it is in fact a monoid, it is usually referred to as simply a semigroup. It is perhaps most easily understood as the syntactic ...
. 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 A match is a tool for starting a fire. Typically, matches are made of small wooden sticks or stiff paper. One end is coated with a material that can be ignited by friction generated by striking the match against a suitable surface. Wooden matc ...
some subterm of , that is, if there is some
substitution Substitution may refer to: Arts and media *Chord substitution, in music, swapping one chord for a related one within a chord progression *Substitution (poetry), a variation in poetic scansion * "Substitution" (song), a 2009 song by Silversun Pic ...
\sigma such that the subterm of s rooted at some position 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 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 tu ...
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 c ...
provides a means for discussing multiprocessing in more formal terms, such as via the trace monoid 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 cau ...
provers.


See also

*
Critical pair (logic) A critical pair arises in a term rewriting system when two rewrite rules overlap to yield two different terms. In more detail, (''t''1, ''t''2) is a critical pair if there is a term ''t'' for which two different applications of a rewrite rule (ei ...
*
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 tha ...
* Knuth–Bendix completion algorithm *
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 * Regulated rewriting * Rho calculus


Notes


Further reading

* 316 pages. *
Marc Bezem Marc or MARC may refer to: People * Marc (given name), people with the first name * Marc (surname), people with the family name Acronyms * MARC standards, a data format used for library cataloging, * MARC Train, a regional commuter rail system of ...
,
Jan Willem Klop Jan Willem Klop (born 1945) is a professor of applied logic at Vrije Universiteit in Amsterdam. He holds a Ph.D. in mathematical logic from Utrecht University. Klop is known for his work on the Algebra of Communicating Processes, co-author of ...
, Roel de Vrijer ("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 Jan van Leeuwen (born December 17, 1946, in Waddinxveen) is a Dutch computer scientist and Emeritus professor of computer science at the Department of Information and Computing Sciences at Utrecht University.
(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 versi ...
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 algorith ...

"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, University of Manchester, Department of Computer Science at the University of Manchester. Education Voronkov was educated at Novosibir ...
(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 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 Jan Willem Klop (born 1945) is a professor of applied logic at Vrije Universiteit in Amsterdam. He holds a Ph.D. in mathematical logic from Utrecht University. Klop is known for his work on the Algebra of Communicating Processes, co-author of ...
. "Term Rewriting Systems", Chapter 1 in
Samson Abramsky Samson Abramsky (born 12 March 1953) is Professor of Computer Science at University College London. He was previously the Christopher Strachey Professor of Computing at the University of Oxford, from 2000 to 2021. He has made contributions to ...
, Dov M. Gabbay and
Tom Maibaum Thomas Stephen Edward Maibaum Fellow of the Royal Society of Arts (FRSA) is a computer scientist. Maibaum has a Bachelor of Science (B.Sc.) undergraduate degree in pure mathematics from the University of Toronto, Canada (1970), and a Doctor of ...
(Eds.), '' Handbook of Logic in Computer Science, 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 Ronald Vernon Book (March 5 1937 – May 28, 1997 in Santa Barbara, California) was a theoretical computer scientist. He published more than 150 papers in scientific journals. His papers are of great impact for computational complexity theory I ...
and Friedrich Otto, ''String-Rewriting Systems'', Springer (1993). * Benjamin Benninghofen, Susanne Kemmerich and
Michael M. Richter Michael M. Richter (21 June 1938 – 10 July 2020) was a German mathematician and computer scientist. Richter is well known for his career in mathematical logic, in particular non-standard analysis, and in artificial intelligence, in particu ...
, ''Systems of Reductions''. LNCS 277, Springer-Verlag (1987). ; Other * Martin Davis,
Ron Sigal Ron is a shortening of the name Ronald. Ron or RON may also refer to: Arts and media * Big Ron (''EastEnders''), a TV character * Ron (''King of Fighters''), a video game character *Ron Douglas, the protagonist in ''Lucky Stiff'' played by Joe ...
, 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,
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