Paradoxes Part I: All Horses Are The Same Colour
I'd like to start a little series on some paradoxes, maybe for the pure joy of the paradox or perhaps to talk about some related idea. Today's uses an abuse of proof by induction, a handy little tool that is great for proving (verifying really) facts that we're told but awful at telling us why they're true. Induction is used to prove a fact about all whole numbers (perhaps after a point) and we start by showing that something is true for the smallest case, usually n = 1. Then we follow by showing that if the statement is true for some n, then it must be true for n + 1. And in fact, it's true for n = 1, so this proves it's true for n = 2. Now we know it's true for n = 2, we can conclude it for n = 3, and so on. A simple example might be: we can reach any rung on a ladder because we can reach the first rung (base case) and from any rung we can reach the next rung (induction step).
The simplest example I can find: the sum of the first n odd numbers is n2. Firstly it's definitely true for n = 1 (and always worth checking for n = 2, 1 + 3 = 22). Now suppose for some number k, the sum of the first k odd numbers is k2 (our induction hypothesis). Then adding the next odd number, which is 2k+1, we get k2 + 2k + 1 which is (k+1)2. QED.
Now for an abuse of induction: all horses are the same colour. The argument follows as such: in a set of 1 horse, there is only one colour, so the base case holds. Now assume that a set of n horses has only one colour. Taking a set of n+1 horses, line them up (or enumerate them) and look at horses 1,...,n. This is set of n horses so by our hypothesis has only one colour. Now looking at horses 2,...,n+1 we use the same reasoning to conclude that they only have one colour. But we can go through the whole set, looking at all n+1 subsets of n horses and since each group of n is the same colour, the group of n + 1 is the same colour. By induction, all horses are the same colour. QED?
I encourage you try and find the mistake yourself if it doesn't jump out at you immediately! Pause and ponder as 3B1B would say. I even left a hint in the post somewhere.

Comments
Post a Comment