Gauss, Triangular Numbers, and Induction
Gauss's Trick for 1..100
Gauss paired the numbers from 1 to 100: pair each i with (101 − i). This creates 50 pairs, each summing to 101, giving a total of . Generalizing, for even n,
Each pair sums to n+1 and there are n/2 pairs.
Triangular Numbers
A triangular number is the sum of the first n natural numbers:
First values:
This quantity also counts dots in a triangular arrangement and is the nth triangular number.
Sum of Odd Numbers Equals a Square
The sum of the first n odd numbers is a perfect square:
Derivation via total minus evens: sum 1..2n is , sum of evens is , so difference gives .
Natural Numbers and Induction
Natural numbers are typically taken as starting at 1 (some definitions include 0). The Principle of Mathematical Induction:
Define a property P(n) about natural number n.
Base case: P(1) is true.
Inductive step: If P(k) is true, then P(k+1) is true.
Conclusion: P(n) holds for all natural numbers n.
This requires clear base case and a valid inductive step to transfer truth from k to k+1.
Inductive Proof: Sum of First n Numbers
Goal: Prove
Base case (n=1): holds.
Inductive step: Assume for some k that . Then
which is the desired form for n = k+1. Hence, by induction, the formula holds for all natural numbers n.
Alternative Perspectives (Brief)
Gauss's trick can be viewed as a double-counting/pattern-recognition method.
The odd/even decomposition provides another route to the same triangular-number result.
In proofs, clearly state the base case and the inductive hypothesis, and show the inductive step.
Quick Takeaways
Core formulas:
Induction structure: base case + inductive step => holds for all natural numbers.
Gauss’s trick is a foundational example of pattern recognition leading to a general formula.