The purpose of this note is to summarize what we have learned at the last two sessions of the Tuesday Afternoon Club. We shall discuss conditions under which finite expressions can be said to represent infinite sequences. The simplest example of such a finite expression is
ones |
def ones = 1 : ones |
Repeated application of the definition of ones gives
ones | |
= 1 : ones | |
= 1 : 1 : ones , and so on. |
On terminology.
All through our discussions we have been been painfully aware of our need of a terminology that would not be misleading.
Aside. How much harm can be done by a misleading terminology was brought home to me this morning when I received a technical note (without title) written by Richard J. Treitel, a Stanford student. When I introduced the predicate transformer, I knew that it wasn’t fully correct to call it “wp” and it wasn’t fully correct either to denote its (second) argument and its value by “post-condition” and “pre-condition” respectively. In view of convention {P} S {R}, I could have called them “right-condition” and “left-condition”. Yet I adopted the traditional terminology, hoping that no one would be misled. But R.J. Treitel states about wp that “it explicitly involves a notion of time.” (End of aside.)
For our purpose, the term “infinite” won’t do. Firstly, when introducing two complementary concepts, I prefer positive terms for both, because naming one by the negation of the other destroys the symmetry by presenting the latter one as the more “basic” concept. (For x ≠ y I prefer the pronunciation “x differs from y” to “x is not equal to y”. I have still to encounter the first mathematician who pronounces x = y as “x doesn’t differ from y”!). Secondly, we shall encounter two drastically different ways in which a sequence can fail to be infinite.
In the time domain we have —remarkably enough!— plenty of negation-free terms to denote infinite, such as “eternal” and “permanent”, but that won’t help us, for my ultimate goal is a non-operational treatment in which our texts needn’t be interpreted as executable code. I have hesitated for a long time between “ongoing sequences” and “continuing sequences” —not being too pleased with either of the two—. After consultation of all my English and American dictionaries I concluded that “continued concatenation” should do the job.
Note. My Webster’s New Collegiate Dictionary gives: “continued fraction” n: a fraction whose numerator is an integer and whose denominators is an integer plus a fraction whose numerator is an integer and whose denominator is an integer plus a fraction and so on”.
The Shorter Oxford English Dictionary gives “Continued 1[...] 2. Carried on in space, time, or series” with as one of the examples: “C. Fraction: a fraction whose denominator is an integer plus a fraction, which latter fraction has a similar denominator and so on.”
(In passing I noted that none of my dictionaries defined “continued fraction: a fraction whose nominator is an integer and whose denominator is an integer plus a continued fraction.”)
I take the fact that dictionaries from both sides of the Atlantic Ocean close their definitions with the famous “and so on” as an indication that “continued” admirably renders the idea of a non-terminating recursion.
(End of “On terminology”)
* *
*
In the following, <atom> stands for a character from a (finite or infinite) alphabet, say a natural number. Sequences, concatenations, and continued concatenations are defined by the following syntax:
< seq > ::= < atom > | < conc > | |
< conc > ::= ( < seq > : ⊀ seq ⊁ ) | |
< contconc > ::= ( < seq > : ⊀ contconc ⊁ ) |
The usual functions “head” and tail are only introduced for concatenations (continued or not):
hd (p : q ) = a | |
tl (p : q) = q |
For concatenations we define the true prefix “tpf n” of length n for n ≥ 1 by
tpf 1 (p : q) = p | |
tpf (n+1) (p : q) = (p : (tpf n q)) ; |
a tpf n (p : q) —when defined, of course— is always a <seq>. The distinguishing feature of continued concatenations is that tpf n < contconc> is defined for all n ≥ 1; tpf n <conc> is only defined for n up to some limit —this because the true prefix of an <atom> is undefined.
That, for some f, tpf n f is defined for all n ≥ 1 is, in principle, always proved by mathematical induction over n. With
def ones = 1 : ones |
With
def C = c : D ; | |
def D = d : C , |
(seq c) ∧ (seq d) ∨ (Q m) ⇒ Q (m+1) , |
and mathematical induction over single m will do the job. In the case of mutual recursion this trick seems applicable in general.
More interesting recursive definitions contain a formal parameter, and are essentially of the form
def f x = g x : f (h x) . |
Given a predicate P such that,
(P x) ⇒ (seq (g x)) ∧ (P (h x)) | (*) |
P x ⇒ seq (g x) ∧ P (h x) ) |
The generalization to mutually recursive definitions is now straightforward. With
def f0 x = g0 x : f1 (h1 x); | |
def f1 x = g1 x : f0 (h0 x) |
Finally some examples.
For | def id f = p : id q |
where p : 1 = f |
* *
*
Consider: | eleven p = p : p |
eleven (p : q) = p : p+p1 : q1 | |
where p1 : q1 =eleven q |
In our next example we are interested in a condition Q x such that eleven is a <seq>. Take for Q, “Q x means that x is a member of the syntactic category <x>, defined by
<x> ::= <integer> | <integer> : ⊀x⊁ ”. |
Q x ⇒ Q (eleven x) |
with | def pascal x = x : pascal (eleven x) |
What is the condition on x such that frill x is a continued concatenation, with frill given by
def frill x = p : frill q | |
where p : q = eleven x ? |
Remark. Instead of tpf n, which is not defined on atoms, we should have introduced pf n, given by
pf 1 p = p | |
pf 1 (p : q) = p | |
pf (n+1) (p : q) = p : pf n q . |
(End of remark.) |
Plataanstraat 5 | 18 - 25 September 1980 |
5671 AL NUENEN | prof.dr.Edsger W.Dijkstra |
The Netherlands | Burroughs Research Fellow |
Transcribed by Martin P.M. van der Burgt
Last revision 20-Jul-2015
.