6

John Horton Conway 1937–2020

 1 year ago
source link: https://rjlipton.wpcomstaging.com/2020/04/14/john-horton-conway-1937-2020/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

John Horton Conway 1937–2020

April 14, 2020

An appreciation

johnhortonconway1987.jpg?resize=192%2C240&ssl=1
Names for large numbers source

John Horton Conway just passed away from complications of COVID-19. We are all saddened by this news, and we hope you all are doing your best to stay safe and help others cope.

Today Ken and I thought we would reflect on some of Conway’s many contributions and emphasize three in which we see connections to computational complexity.

Conway was a Fellow of the Royal Society, and was the first recipient of the London Mathematical Society’s Pólya Prize. His nomination to the Royal Society reads:

A versatile mathematician who combines a deep combinatorial insight with algebraic virtuosity, particularly in the construction and manipulation of “off-beat” algebraic structures which illuminate a wide variety of problems in completely unexpected ways. He has made distinguished contributions to the theory of finite groups, to the theory of knots, to mathematical logic (both set theory and automata theory) and to the theory of games (as also to its practice).

A Life Force

Conway may be most noted for his game of Life. This is a two-dimensional cellular automaton. Conway invented it in 1970, which he rounded up from 1969. The game—and Martin Gardner’s 1970 column on it in Scientific American—made him famous in the wider community. The website conwaylife.com and several others link to more information than we could digest in a lifetime.

We want to emphasize instead how Conway was a special force in mathematics. He applied an almost elementary approach to deep hard problems of mathematics. This is a unique combination. There have been mathematicians who worked on deep problems and also on recreational math, but few who established integral flows across the boundary between them. Conway infused both with magic in a way conveyed by an iconic photograph of his Princeton office in 1993:

conwayoffice.jpg?resize=450%2C270&ssl=1
Guardian via Dith Pran, NY Times source

What Ken remembers is how accessible Conway was outside his office. “I know I met him at least once while I was an undergraduate at Princeton in 1979 or 1980, though this is overlaid by a memory of finding just him and a few others in the Fine Hall tea room when I was there for my tenth reunion in 1991. My most evocative memory is when Conway gave an evening talk to the undergraduate mathematics club at Oxford when I was there sometime after 1981. It was relatively sparsely attended, perhaps because it was literally a dark and stormy winter night. But after his lecture we all got to huddle around him for another hour in the tea room as he regaled us with stories and mathematical problems.”

We also remember that Conway was one of Andrew Wiles’s main confidants during the months before Wiles announced his proof of Fermat’s Last Theorem in June 1993. Here is a transcript of a PBS Nova documentary on the proof in which Conway appears prominently. Ken has picked out two of Conway’s other contributions that we feel may have untapped use for research in complexity theory.

Conway’s Numbers

One of this blog’s “invariants” is first-name last-name style, thus “Godfrey Hardy” not “G.H. Hardy.” But we make an exception in Conway’s case. Partly this owes to how his initials were amplified by Donald Knuth in his novella Surreal Numbers:

In the beginning, everything was void, and J.H.W.H. Conway began to create numbers.

Besides the void (that is, ), the creation uses the idea of a left set and a right set . Every number has the form . The initial number is

Once a number is generated, it can be in the or of other numbers. Thus, next come

You might think of next, but it violates the invariant

which defines an form to be a number.

The relation is inductively defined for and by

That is, no member of the left-set of “bumps” (in the sense of rowing races) and does not bump any member of the right-set of . Note that and are not involved—they already behave correctly owing to the invariant. The numbers are equal if and both hold. The rule for addition is

where and so on. The logical rule for any makes the definition of addition well-founded. This yields the numerical fact

It is immediate that is commutative. There is also a rule for multiplication but addition gives us enough to talk about here.

Redundancy and Simplicity

It is straightforward to compute that and . Now consider:

This is a legal number. You can check that the relations and both hold. Thus—as a number rather than a “form”—the number equals .

That seems to make sense since is the average of and , but now compute as a formal Conway number and consider . This also satisfies the relations and , so must likewise equal . Thus is not some kind of numerical interpolation between and . The interpretation that grabbed my imagination as a teenager in 1976 is that:

equals the simplest number that is between and .

This is especially evocative in cases like , which is what one gets by computing . In general, is the simplest number between and . Conway made this a theorem by giving each number a set-theoretic ordinal for its “time of generation” and proved that always equals a (the) least-ordinal number such that for every and .

Conway’s rules allow and to be infinite sets—any sets of numbers built by the rules of set theory. Then not only do all real numbers emerge at ordinal times, so do infinitesimals and further richness of structure. We should remember that Conway began as a set theorist with a dissertation under Harold Davenport titled Homogeneous ordered sets. All Conway numbers with finite creation times are dyadic rational numbers, which may seem trivial from the standpoint of set theory, but those are akin to binary strings.

What became magic was how Conway’s rules characterize games. Through games we can also interpret forms like that are not numbers. I did not know about complexity when I purchased Conway’s book On Numbers and Games around 1980, let alone the connections between games and complexity. The book has a lot of depth that might be useful to complexity theory. To quote Peter Sarnak, per this article by Conway’s biographer Siobhan Roberts on Conway’s meeting with Kurt Gödel:

The surreal numbers will be applied. It’s just a question of how and when.

Modular Programming

Most of us know that the conditional-jump instruction


if (x == 0) goto k

where k is the label of another instruction, creates a universal programming language when added to the usual programming primitives of assignment, sequencing, and simple arithmetic. Conway was a maven of the “modular-jump”:


if (x == 0 mod m) goto k.

In complexity theory we know that mod- gates having 0-1 inputs define the idea of circuits, with denoting problems solved by families of these circuits having fixed depth and polynomial size. If we don’t insist on fixed depth and unary inputs, we get modular programs. They are more complex than circuits, but we can learn from what can be done concretely with them.

Conway created a particular form of modular programs in a language he called FRACTRAN. A program is just a list of positive fractions in lowest terms. The input is an integer held in a separate register. Each fraction represents the code line

In other words, each iteration takes the first fraction such that is an integer and updates to ; if there is no such fraction then the program exits and outputs .

For example, the following FRACTRAN program given in Wikipedia’s article implicitly computes integer division:

The notation is unary: The input has the form and the ouput is where with remainder . This already hints the fact that FRACTRAN is a universal programming language. Powers of primes serve as memory registers. The following program computes the Hamming weight of the binary expansion of a natural number encoded as , returning the value :

This might help bridge to our notions of . The Wikipedia article does a good job of de-mystifying the fractions in terms of their actions on the prime-power registers under the unary-style encoding. We wonder what happens when we try to work directly with binary encodings.

The Collatz Example

The famous “” problem of Lothar Collatz is a case in point. It iterates the function

The following FRACTRAN program given by Kenneth Monks iterates under the unary encoding :

Note that since the last fraction is an integer the program runs forever. If so that the input is , it would go and thus cycle, unless we stop it. The powers of that appear in its output give the desired sequence.

More natural to us, however, is the following modular program—which can use binary or any notation:


start: if (n == 1) { halt; }
if (n == 0 mod 2) { goto div; }
n = 3*n + 1;
div: n = n/2;
goto start;

One can generalize the Collatz problem to moduli . For each we have a linear transformation that always gives an integer value when . We want to know about the orbits of numbers under this iteration.

In fact, this is exactly what FRACTRAN does. Take to be the least common multiple of the denominators in a FRACTRAN program . Then for each we can list the remainders that are multiples of and we get , with . The Turing-universality of FRACTRAN then proves a general theorem Conway stated in 1972:

Theorem 1 Generalized Collatz-type problems for moduli are undecidable.

Several followup papers have proved stronger and more particular forms of the undecidability. The paper by Monks linked above leverages the unary encoding to show that having is essentially without loss of generality for universality; it is titled “ Minus the .”

Having digested universality, it is natural to wonder about complexity. Can we use modular programming to achieve stronger connections between number theory and complexity classes—classes above the level of , say? One possible mode of connection is exemplified by this paper from STACS 1994, which both Dick and I attended. We wonder whether the kind of connection noted by Terry Tao in his tribute to Conway can also smooth the way to understanding .

Open Problems

Conway posed many open problems himself. Here is a list of five for which he posted cash rewards in the manner of Paul Erdős. The fifth was recently solved. The fourth can be stated in one sentence:

If a set of points in the plane intersects every convex region of area 1, then must it have pairs of points at arbitrarily small distances?

Our condolences go out to his family and all who were enthralled by him in the mathematical world. We could talk endlessly about his impact on mathematics education—even about simple things like how to prove that is irrational—or try to tangle with his applications of the “Monster” group to modular forms, but those must be for another time. Also see Scott Aaronson’s tribute and its comments section for many more stories and items.

[some small word and format changes, added link to Scott and may add others as time allows]

Like this:

Loading...

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK