What is Proof by Cases?
Sometimes you can’t prove something in one go.
But you can split it into scenarios and prove each one separately.
The Idea
If there are only a few possibilities:
- Split into Case 1, Case 2, Case 3…
- Prove the result holds in each case
- Conclude — since all cases are covered, the result is true
Can’t do it all at once? Split into cases. Cover them all.
The Method
To prove P:
- Identify all possible cases (they must cover everything)
- Prove P is true in Case 1
- Prove P is true in Case 2
- (Continue for all cases)
- Done — P is always true
Example 1: n² + n is Even
Claim: For any integer , the expression is even.
The split:
Any integer is either even or odd. Two cases.
Case 1: is even
- for some integer
Substitute:
- That’s — even ✓
Case 2: is odd
- for some integer
Substitute:
- That’s — even ✓
Conclusion:
Both cases give even. So is always even.
We didn’t know if n was even or odd. So we checked both.
Example 2: Consecutive Product
Claim: The product of two consecutive integers is always even.
In other words: is even for any integer .
The split:
Any integer is either even or odd. Two cases.
Case 1: is even
- for some integer
Substitute:
- That’s — even ✓
Case 2: is odd
- If is odd, then is even
- So for some integer
Substitute:
- That’s — even ✓
Conclusion:
Both cases give even. So is always even.
Consecutive integers — one is always even. So the product is always even.
When to Use Proof by Cases
- When the situation naturally splits (even/odd, positive/negative, etc.)
- When a direct approach doesn’t work for all values at once
- When you need to handle edge cases separately