Induction

Revision as of 15:25, 17 February 2008 by Styrofoam1994 (talk | contribs) (Intermediate)

Induction is a method of proof where 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 shown that the result holds for all positive integers; we will have showed 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: ${n=1}$. $1=\frac{1(2)}{2}$.

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

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.

Problems

Introductory

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 · 3 · 6)2 = 182 = 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.

Olympiad

  • A function $f(x)$ defined on the positive integers satisfies $\displaystyle f(1) = 1996$ and $f(1)+f(2)+\ldots + f(n) = n^2f(n)\qquad (n > 1)$. Calculate $f(1996)$. (United Kingdom 1996/2)

See also