Is This Flawed Proof by Induction Misusing the Principle?

  • Context: Graduate 
  • Thread starter Thread starter Rasalhague
  • Start date Start date
  • Tags Tags
    Induction Proof
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 4K views
Rasalhague
Messages
1,383
Reaction score
2
At the end of this video lecture on the Principle of Induction, the teacher gives the following example of a flawed proof that misuses the principle.

Theorem. All horses are the same colour.

Proof. (By induction.)

Base case. In a set of one horse {h}, the principle clearly holds.

Inductive step. Suppose S = {h1,...,hn+1}, S' = {h1,...,hn}, S'' = {h2,...,hn+1} are sets of horses. Sets S' and S'' each have one horse fewer than S. h2 is an element of S' and of S''. Therefore all horses in S will have the same colour, in particular the same colour as h2.

End proof.


The explanation offered is that this proof fails because the inductive step assumes that n does not equal 2, and so isn't general enough.

Is there another flaw, namely that the proof treats S' and S'' as distinct sets of horses but has indexed them with the same natural number as each other? To use the principle of induction correctly, wouldn't we need to use distinct labels for distinct objects?

EDIT. Correction: It assumes n + 1 does not equal 2.
 
Last edited:
Physics news on Phys.org
No, what is done their is perfectly legitimate. If you have, say, four objects, labeled a, b, c, and d, you are justified into breaking the set {a, b, c, d} into the union of {a, b, c} and {b, c, d} and that is all that is done. The indexing is completely irrelevant to the proof.
 
Is the inductive hypothesis here not only that all the horses in S' are the same colour as each other, but also that all the horses in S'' are the same colour as each other? I'm guessing so, since the sets are indexed just by the number of elements they have. Then what the inductive step has to show is that these statements imply that all the horses in S are the same colour as each other.
 
Rasalhague said:
Is the inductive hypothesis here not only that all the horses in S' are the same colour as each other, but also that all the horses in S'' are the same colour as each other?
Certainly. The proof goes by induction on the number, say n, of horses. First it is shown that for n=1 it holds. Then the inductive hypothesis is that it holds for some n, i.e. that any set of n horses has the same color. This is then applied to the sets S and S'', which are both sets of n horses.
 
Okay, I think I get it now. Thank to you both for your help.