Induction

Induction is a method of proof in which the desired result is first shown to hold for a certain value (the Base Case); it is then shown that if the desired result holds for a certain value, it then holds for another, closely related value. Typically, this means proving first that the result holds for $n=1$ (in the Base Case), and then proving that having the result hold for ${n=k}$ implies that the result holds for $n=k+1$. In this way, we can show that the result holds for all positive integers; we will have shown that it works for $n=1$, and that implies that it works for $n=1+1=2$, which in turn means it works for $n=2+1=3$, and so on.

Other, odder inductions are possible. If a problem asks you to prove something for all integers greater than 3, you can use $n=4$ as your base case instead. You might have to induct over the even positive integers numbers instead of all of them; in this case, you would take $n=2$ as your base case, and show that if ${n=k}$ gives the desired result, so does $n=k+2$. If you wish, you can similarly induct over the powers of 2.

Example

Here is a simple example of how induction works. Below is a proof (by induction, of course) that the $n$th triangular number is indeed equal to $\frac{n(n+1)}{2}$ (the $n$th triangular number is defined as $1+2+\cdots +n$; imagine an equilateral triangle composed of evenly spaced dots).

Base Case: If $n=1,$ then $1+2+\ldots+n = 1,$ and $\frac{1(2)}{2} = 1.$ So, $1+2+\ldots+n = \frac{n(n+1)}{2}$ for $n=1.$

Inductive Step: Suppose the conclusion is valid for $n=k$. That is, suppose we have $1+2+ \cdots + k = \frac{k(k+1)}{2}$. Adding ${k+1}$ to both sides, we get \[1+2+\cdots +k+(k+1)= \frac{k(k+1)}{2}+\frac{2(k+1)}{2} = \frac{(k+1)(k+2)}{2},\] so the conclusion holding for $n=k$ implies that it holds for $n = k+1$, and our induction is complete.$\blacksquare$

Uses

Induction can be useful in almost any branch of mathematics. Often, problems in number theory and combinatorics are especially susceptible to induction solutions, but that's not to say that there aren't any problems in other areas, such as Inequalities, that can be solved with induction.

Induction is also useful in any level of mathematics that has an emphasis on proof. Induction problems can be found anywhere from the Power Round of the ARML up through the USAMTS all the way up to the USAMO and IMO. A good example of an upper-level problem that can be solved with induction is USAMO 2006/5.

Video Lecture

https://www.youtube.com/watch?v=Bp6jbrkQf_4&t

Problems

Introductory

  • The Fibonacci numbers are a sequence of numbers that satisfy $F_{1}=1$, $F_{2}=1$, and the recursion $F_{n}=F_{n-1}+F_{n-2}$ when $n \geq 3$. Prove that $F_{1}+F_{2}+ \ldots +F_{n}=F_{n+2}-1$.
  • Prove that $1^3+2^3+...+n^3=(1+2+...+n)^2$.
  • Prove Bernoulli's inequality.

Intermediate

  • For any set $T$ whose elements are positive integers, define $f(T)$ to be the square of the product of the elements of $T$. For example, if $T = \{1, 3, 6\}$, then $f(T) = (1 \cdot 3 \cdot 6)^2 = 18^2 = 324$. For any positive integer $n$, consider all nonempty subsets $S$ of $\{1, 2, . . . , n\}$ that do not contain two consecutive integers. Prove that the sum of all the f(S)’s of these subsets is $(n + 1)! - 1$.
  • A function $f(x)$ defined on the positive integers satisfies $f(1) = 1996$ and $f(1)+f(2)+\ldots + f(n) = n^2f(n)\qquad (n > 1)$. Calculate $f(1996)$. (United Kingdom 1996/2)

Olympiad

  • Prove Fermat's Little Theorem.
  • Prove AM-GM Inequality by the first principle of mathematical induction.
  • Prove that the number of odd binomial coefficients in any row of the Pascal triangle is a power of 2. (1956 Putnam Competition)

See also