, 10 min read
Methods of Proof — Diagonalization
Original post is here eklausmeier.goip.de/blog/2015/06-13-methods-of-proof-diagonalization.
Very clear presentation on the uncountability of the real numbers, and the halting problem.
Further keywords: Cantor, natural numbers, real numbers, diagonalization, bijection, Turing halting problem, proof by contradiction.
-- -- -- Quote -- -- --
A while back we featured a post about why learning mathematics can be hard for programmers, and I claimed a major issue was not understanding the basic methods of proof (the lingua franca between intuition and rigorous mathematics). I boiled these down to the "basic four," direct implication, contrapositive, contradiction, and induction. But in mathematics there is an ever growing supply of proof methods. There are books written about the "probabilistic method," and I recently went to a lecture where the "linear algebra method" was displayed. There has been recent talk of a "quantum method" for proving theorems unrelated to quantum mechanics, and many more.
So in continuing our series of methods of proof, we'll move up to some of the more advanced methods of proof. And in keeping with the spirit of the series, we'll spend most of our time discussing the structural form of the proofs. This time, diagonalization.
Diagonalization
Perhaps one of the most famous methods of proof after the basic four is proof by diagonalization. Why do they call it diagonalization? Because the idea behind diagonalization is to write out a table that describes how a collection of objects behaves, and then to manipulate the "diagonal" of that table to get a new object that you can prove isn't in the table.The simplest and most famous example of this is the proof that there is no bijection between the natural numbers and the real numbers. We defined injections, and surjections and bijections, in two earlier posts in this series, but for new readers a bijection is just a one-to-one mapping between two collections of things. For example, one can construct a bijection between all positive integers and all even positive integers by mapping
Theorem: There is no bijection from the natural numbers
Proof. Suppose to the contrary (i.e., we're about to do proof by contradiction) that there is a bijection
First let me just do some setup. I claim that all we need to do is show that there is no bijection between
Okay, setup is done. We just have to show there is no bijection between
The reason I did all that setup is so that I can use the fact that every real number in
The
It's a bit harder to read, but trust me the notation is helpful.
Now by the assumption that
Here's how I'll come up with such a number
Now we show that
It's the kind of proof that blows your mind the first time you see it, because it says that there is more than one kind of infinity. Not something you think about every day, right?
The Halting Problem
The second example we'll show of a proof by diagonalization is the Halting Theorem, proved originally by Alan Turing, which says that there are some problems that computers can't solve, even if given unbounded space and time to perform their computations. The formal mathematical model is called a Turing machine, but for simplicity you can think of "Turing machines" and "algorithms described in words" as the same thing. Or if you want it can be "programs written in programming language X." So we'll use the three words "Turing machine," "algorithm," and "program" interchangeably.
The proof works by actually defining a problem and proving it can't be solved. The problem is called the halting problem, and it is the problem of deciding: given a program
So first we'll give the standard proof that the halting problem can't be solved, and then we'll inspect the form of the proof more closely to see why it's considered a diagonalization argument.
Theorem: The halting program cannot be solved by Turing machines.
Proof. Suppose to the contrary that
def metaT(P):
run T on (P,P)
if T says that P halts:
loop infinitely
else:
halt and output "success!"
In words, meta-
Now let's do something crazy: let's run meta-
metaT(metaT)
So meta. The question is what is the output of this call? The meta-metaT(metaT)
(which is the original thing we ran) actually does not halt, contradicting metaT(metaT)
should loop infinitely, that will cause meta-
This theorem is deep because it says that you can't possibly write a program to which can always detect bugs in other programs. Infinite loops are just one special kind of bug.
But let's take a closer look and see why this is a proof by diagonalization. The first thing we need to convince ourselves is that the set of all programs is countable (that is, there is a bijection from
The second thing we need to convince ourselves of is that a problem corresponds to an infinite binary string. To do this, we'll restrict our attention to problems with yes/no answers, that is where the goal of the program is to output a single bit corresponding to yes or no for a given input. Then if we list all possible inputs in increasing lexicographic order, a problem can be represented by the infinite list of bits that are the correct outputs to each input.
For example, if the problem is to determine whether a given binary input string corresponds to an even number, the representation might look like this:
`010101010101010101...`
Of course this all depends on the details of how one encodes inputs, but the point is that if you wanted to you could nail all this down precisely. More importantly for us we can represent the halting problem as an infinite table of bits. If the columns of the table are all programs (in lex order), and the rows of the table correspond to inputs (in lex order), then the table would have at entry
here
Now we assume for contradiction sake that some program solves the halting problem, i.e. that every entry of the table is computable. Now we'll construct the answers output by meta-
So these are two of the most high-profile uses of the method of diagonalization. It's a great tool for your proving repertoire.
Until next time!