[Math] Serendipitous mathematical discoveries in recent times

math-historysoft-question

As of today, most important results in mathematics are conjectured long before they are proven.

Are there any examples of (important) mathematical discoveries that were proven by chance rather than from the authors conducting a targeted research on a hypothesis? I'm interested especially in results obtained in the last 100 years or so.

Best Answer

A fun instance in proof-theory. The Curry-Howard correspondence links computational calculi to logical systems. In particular, there are (old) isomorphisms between a Hilbert-style deduction system and combinators, and between natural deduction and lambda-calculus, both in the case of intuitionist logic. It was widely believed that there wasn't anything similar for classical logic, or rather logicians all knew it was an impossible task, because classical logic didn't have any computational meaning. (Note: classical logic is intuitionist logic with the law of excluded middle, $A\vee \neg A$, added as an inference rule.)

But in 1989, a computer scientist, who didn't know it was impossible, did it: he gave a type system for Scheme, with the $\texttt{call/cc}$ primitive, which was typed by Peirce's law, a rule equivalent to the law of excluded middle. From that the Curry-Howard isomorphism was generalized to classical logic and then many more complex calculi, which greatly influenced the field of proof theory, influencing proof assistants and programming language design.

Related Question