Problem 2
Question
What is wrong with the following inductive proof of "all horses are the same color."? Theorem Let \(H\) be a set of \(n\) horses, all horses in \(H\) are the same color. Proof: We proceed by induction on \(n\). Basis: Suppose \(H\) is a set containing 1 horse. Clearly this horse is the same color as itself. Given a set of \(k+1\) horses \(H\) we can construct two sets of \(k\) horses. Suppose \(H=\left\\{h_{1}, h_{2}, h_{3}, \ldots h_{k+1}\right\\}\). Define \(H_{a}=\left\\{h_{1}, h_{2}, h_{3}, \ldots h_{k}\right\\}\) (i.e. \(H_{a}\) contains just the first \(k\) horses ) and \(H_{b}=\left\\{h_{2}, h_{3}, h_{4}, \ldots h_{k+1}\right\\}\) (i.e. \(H_{b}\) contains the last \(k\) horses). By the inductive hypothesis both these sets contain horses that are "all the same color." Also, all the horses from \(h_{2}\) to \(h_{k}\) are in both sets so both \(H_{a}\) and \(H_{b}\) con- tain only horses of this (same) color. Finally, we conclude that all the horses in \(H\) are the same color.
Step-by-Step Solution
VerifiedKey Concepts
incorrect proof by induction
Specifically, when trying to prove that any set of n+1 horses are the same color, the argument breaks down when transitioning from n=1 to n+1=2 horses. The sets of horses considered don't overlap adequately to provide the necessary color information. This logic leap is an essential mistake, rendering the entire proof flawed.
mathematical induction
- Base case: Prove the statement for the initial value, often n=1.
- Inductive step: Assume the statement holds for some arbitrary natural number k, then prove it for k+1.
If both steps are successfully completed, the statement is proven true for all natural numbers. The essence of induction hinges on the assumption to generalize the proof from n=k to n=k+1, and ensuring that this leap is logically valid.
logical fallacy in proofs
Common logical fallacies include:
- Begging the question: Assuming what you're trying to prove.
- False assumption: Making an incorrect assumption at any step of the proof.
- Invalid inductive step: Incorrectly making the jump from n to n+1.
The mentioned proof attempts to establish an inductive step that doesn’t hold for the transition from 1 to 2 horses due to lack of sufficient overlap in the subsets considered. Recognizing and correcting these logical missteps is crucial for constructing valid proofs.