Rippling
{{Short description|Heuristics in automated theorem proving}}
In computer science, more particularly in automated theorem proving, rippling{{cite book | doi=10.1017/CBO9780511543326 | author1=Alan Bundy |author2= David Basin |author3= Dieter Hutter |author4= Andrew Ireland | title=Rippling: Meta-Level Guidance for Mathematical Reasoning | location=Cambridge | publisher=Cambridge University Press | series=Cambridge Tracts in Theoretical Computer Science | year=2005 | isbn=0-521-83449-X }} is a group of meta-level heuristics, developed primarily in the Mathematical Reasoning Group in the School of Informatics at the University of Edinburgh, and most commonly used to guide inductive proofs in automated theorem proving systems. Rippling may be viewed as a restricted form of rewrite system, where special object level annotations are used to ensure fertilization upon the completion of rewriting, with a measure decreasing requirement ensuring termination for any set of rewrite rules and expression.
History
Raymond Aubin was the first person to use the term "rippling out" whilst working on his 1976 PhD thesis{{ citation | last = Aubin | first = Raymond | title = Mechanizing Structural Induction | publisher = University of Edinburgh | series = EDI-INF-PHD | volume = 76-002 | year = 1976 | hdl = 1842/6649 }} at the University of Edinburgh. He recognised a common pattern of movement during the rewriting stage of inductive proofs. Alan Bundy later turned this concept on its head by defining rippling to be this pattern of movement, rather than a side effect.{{cn|reason=When?|date=October 2020}}
Since then, "rippling sideways", "rippling in" and "rippling past" were coined, so the term was generalised to rippling.{{cn|reason=When, by whom?|date=October 2020}} Rippling continues to be developed at Edinburgh, and elsewhere, as of 2007.
Rippling has been applied to many problems traditionally viewed as being hard in the inductive theorem proving community, including Bledsoe's limit theorems{{cn|date=October 2020}} and a proof of the Gordon microprocessor,{{cn|date=October 2020}} a miniature computer developed by Michael J. C. Gordon and his team at Cambridge.
Overview
Very often, when attempting to prove a proposition, we are given a source expression and a target expression, which differ only by the inclusion of a few extra syntactic elements.
This is especially true in inductive proofs, where the given expression is taken to be the inductive hypothesis, and the target expression the inductive conclusion. Usually, the differences between the hypothesis and conclusion are only minor, perhaps the inclusion of a successor function (e.g., +1) around the induction variable.
At the start of rippling the differences between the two expressions, known as wave-fronts in rippling parlance, are identified. Typically these differences prevent the completion of the proof and need to be "moved away". The target expression is annotated to distinguish the wavefronts (differences) and skeleton (common structure) between the two expressions. Special rules, called wave rules, can then be used in a terminating fashion to manipulate the target expression until the source expression can be used to complete the proof.
Example
We aim to show that the addition of natural numbers is commutative. This is an elementary property, and the proof is by routine induction. Nevertheless, the search space for finding such a proof may become quite large.
Typically, the base case of any inductive proof is solved by methods other than rippling. For this reason, we will concentrate on the step case.
Our step case takes the following form, where we have chosen to use x as the induction variable:
We may also possess several rewrite rules, drawn from lemmas, inductive definitions or elsewhere, that can be used to form wave-rules.
Suppose we have the following three rewrite rules:
File:Rippling rewrite rules.png
then these can be annotated, to form:
Note that all these annotated rules preserve the skeleton (x + y = y + x, in the first case and x + y in the second/third). Now, annotating the inductive step case, gives us:
File:Rippling annotated step case.png
And we are all set to perform rippling:
Note that the final rewrite causes all wave-fronts to disappear, and we may now apply fertilization, the application of the inductive hypotheses, to complete the proof.
References
{{Reflist}}
Further reading
- {{cite journal | url=https://www.cse.unsw.edu.au/~tw/jar96.pdf | author=David A. Basin and Toby Walsh | title=A Calculus for and Termination of Rippling | journal=Journal of Automated Reasoning | volume=16 | number=1–2 | pages=147–180 | year=1996 | doi=10.1007/BF00244462 | s2cid=14427821 }}