0% found this document useful (0 votes)
13 views13 pages

Induction

The document explains the principle of mathematical induction, detailing its steps and providing examples to illustrate its application. It emphasizes the importance of the Well-Ordering Axiom and demonstrates how to prove statements for all integers using induction. Additionally, it introduces generalized induction as an alternative approach to proving statements based on all previous cases.

Uploaded by

quantbuddha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views13 pages

Induction

The document explains the principle of mathematical induction, detailing its steps and providing examples to illustrate its application. It emphasizes the importance of the Well-Ordering Axiom and demonstrates how to prove statements for all integers using induction. Additionally, it introduces generalized induction as an alternative approach to proving statements based on all previous cases.

Uploaded by

quantbuddha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 13

2-25-2020

Induction
Induction is used to prove a sequence of statements P1 , P2 , P3 , . . . . There may be finitely many
statements, but often there are infinitely many.
For example, consider the statement

n(n + 1)
1 + 2 + 3 + ··· + n = for n ≥ 1.
2
This is actually an infinite set of statements, one for each integer n ≥ 1:

1(1 + 1)
1=
2
2(2 + 1)
1+2=
2
3(3 + 1)
1+2+3=
2
4(4 + 1)
1+2+3+4=
2
..
.

You might think of proving this result by induction — and in fact, I’ll do so below.
On the other hand, this statement is also an infinite set of statements:

x2 + 1 ≥ 2x for all x ∈ R.

However, there is one for each real number. You are unlikely to prove this by induction.
The fact that a statement involves integers does not mean induction is appropriate. For example,
consider the statement
“The sum of two even numbers is even.”
It’s true that this is a statement about an infinite set of pairs of integers.

2+2 is even
6 + (−14) is even
112 + 64 is even
..
.

However, the problem with using induction here is that there isn’t an obvious way to arrange the
statements in a sequence.
Likewise, consider the statement
“If n is an integer, then 4n + 1 is odd.”
While it’s conceivable that you could give an induction proof, it would be overkill: 4n + 1 = 2(2n) + 1
expresses 4n + 1 as 2 times something plus 1, so it must be odd.
How does induction work? Suppose you have a sequence of statements P (1), P (2), . . . , P (n), . . . , one
for each positive integer. (There’s no harm in starting your numbering with 0 if it’s convenient.) In the
simplest case, to give a proof by induction:
1. Prove P1 .

1
2. Let n > 1, and assume Pn−1 is true.
3. Using the assumption that Pn−1 is true, prove that Pn must be true.
If you can complete these steps, you can conclude that Pn is true for all n ≥ 1, by induction.
The assumption that Pn−1 is true is often called the induction hypothesis, or the inductive as-
sumption.
Why does it work? Induction follows from a fundamental fact about the positive integers called the
Well-Ordering Axiom.
Well-Ordering Axiom. Every nonempty subset of the positive integers has a smallest element.
The Well-Ordering Axiom is an axiom for the positive integers, so there’s no question of proving it.

Example. Verify the Well-Ordering Axiom for the following subsets of positive integers:
(a) The positive even integers: {2, 4, 6, . . .}.
(b) The subset of the positive integers which consists of positive integers whose decimal representations begin
and end with “1”. For example, 101, 128391, and 1651 are elements of this set.
(a) The smallest element of this set is 2.
(b) The smallest element of this set is 1.

Theorem. (Principle of Mathematical Induction) Let P1 , P2 , . . . be a set of statements indexed by


the positive integers. Suppose that:
(a) P1 is true.
(b) For every n > 1, if Pn−1 is true, then Pn is true.
Then Pn is true for all n ≥ 1.
The intuitive idea is illustrated below:

Assumption (a) says that P1 is true. Assumption (b) says that if a statement is true, the next statement
below it is true. I’ve represented this with a “C-shaped” arrow connector from the known true statement to
the next one. As you move the connector down, you find that P1 being true makes P2 true, P2 being true
makes P3 true, and so on. Thus, all the statements are true.
Proof. I’ll prove the result by contradiction.
Assume that P1 is true, and for every n > 1, if Pn−1 is true, then Pn is true. Suppose that it isn’t true
that Pn is true for all n ≥ 1.
Consider the set of integers n ≥ 1 such that Pn is false. Since Pn is not true for all n ≥ 1, there must
be some n for which Pn is false. Hence, the set of integers n ≥ 1 such that Pn is false is nonempty.

2
Since this is a nonempty subset of the positive integers, by Well-Ordering it contains a smallest element
MIN. Thus, PMIN is false, and Pn is not false (i.e. Pn is true) for all n < MIN.
Now MIN can’t be 1, because P1 is true by assumption. Thus, MIN > 1. So MIN − 1 is a positive
integer, and PMIN−1 must be true.
But now my second assumption — if a statement in the sequence is true, the following statement is true
— shows that PMIN−1+1 = PMIN must be true. This contradicts the fact that PMIN is false.
This contradiction proves that Pn is true for all n ≥ 1.
Remark. You can also do the induction step by assuming the result for n, and proving it for n + 1, and I
will often do this. Usually, there is no difference in the difficulty, so you should use whichever approach you
find comfortable.
Also, some inductions begin with a statement numbered “0” — or “42”. The numbering doesn’t matter.

Example. Prove that


n(n + 1)
1 + 2 + 3 + ··· + n = for n ≥ 1.
2

The formula is true for n = 1, since the left side is 1 and the right side is

1·2
= 1.
2
Suppose the formula holds for n. This means that

n(n + 1)
1 + 2 + 3 + ···+ n = .
2
I want to prove that the formula holds for n + 1.
Suggestion: You might want to write the formula for n + 1 out on scratch paper so you know what you’re
trying to prove. You get it by replacing “n” with “n + 1” in the formula for n:

(n + 1)[(n + 1) + 1] (n + 1)(n + 2)
1 + 2 + 3 + · · · + n + (n + 1) = = .
2 2
Don’t start with this equation! — that would be assuming what you want to prove. Instead, start
with the left side and work until you get the right side.

n(n + 1)
1 + 2 + 3 + · · · + n + (n + 1) = + (n + 1) Induction hypothesis
2 
n 
= (n + 1) +1 Algebra
2
n+2
= (n + 1) Common denominator
2
(n + 1)(n + 2)
= Algebra
2
This proves the formula for n + 1. Hence, the result is true for all n ≥ 1, by induction.
Notice that when I wrote out the left side of the formula for n + 1 I put in both the final term “n + 1”
and the term before it, which is “n”. In that way, I could see the expression “1 + 2 + 3 + · · · + n” which is
the left side of my induction assumption — so I knew to begin by substituting. This trick is often useful in
the induction step.

3
Example. Prove that for n ≥ 1

n(11n + 17)
14 + 25 + · · · + (11n + 3) = .
2

The formula is true for n = 1, since the left side is 14 and the right side is

1 · (11 + 17)
= 14.
2
Suppose the formula holds for n. This means that

n(11n + 17)
14 + 25 + · · · + (11n + 3) = .
2
I need to prove the formula for n + 1.
On scratch paper, I write out the formula for n + 1; it is

(n + 1)(11(n + 1) + 17) (n + 1)(11n + 28)


14 + 25 + · · · + (11n + 3) + (11n + 14) = = .
2 2
Remember not to start with this equation — start with the left side! Notice that on the left side I wrote
out the final term (11(n + 1) + 3 = 11n + 14), then wrote out the previous term (11n + 3). This helps me
recognize the left side of the induction assumption.)
Continuing with our proof, here’s the proof of the formula for n + 1. I won’t write out justifications for
steps this time, as most of it is basic algebra.

n(11n + 17)
14 + 25 + · · · + (11n + 3) + (11n + 14) = + (11n + 14)
2
n(11n + 17) 2(11n + 14)
= +
2 2
n(11n + 17) + 2(11n + 14)
=
2
2
(11n + 17n) + (22n + 28)
=
2
2
11n + 39n + 28
=
2
(n + 1)(11n + 28)
=
2
This proves the result for n + 1, so the result is true for all n ≥ 1 by induction.
Are you wondering how I made the final step?

11n2 + 39n + 28 (n + 1)(11n + 28)


= .
2 2

(n + 1)(11n + 28)
The idea is that I knew from my scratch work that the final answer had to be . So I
2
2
wrote it down, then checked that it worked by multiplying out (n+1)(11n+28) to see if I got 11n +39n+28.
Nobody “knows” how you got the final step — the question is whether it’s true!

4
Example. Let x ∈ R, x 6= 1. Prove that

1 − xn+1
1 + x + x2 + · · · + xn = for n ≥ 0.
1−x

You’re allowed to “begin” an induction with n = 0 — or any other integer — if it’s convenient to do so.
For n = 0,
1 − xn+1 1−x
1 + x + x2 + · · · + xn = 1, while = = 1.
1−x 1−x
The result is true for n = 0.
(For variety, I’ll do this induction step by assuming the result for n− 1 and proving it for n. The amount
of work is about the same as assuming it for n and proving it for n + 1.)
Assume that n > 0, and that the result holds for n − 1:

1 − xn
1 + x + x2 + · · · + xn−1 = .
1−x

I want to show that the result holds for n.


1 − xn
1 + x + x2 + · · · + xn−1 + xn = + xn Induction hypothesis
1−x
1 − xn xn − xn+1
= + Algebra
1−x 1−x
1 − xn + xn + xn+1
= Algebra
1−x
1 − xn+1
= Algebra
1−x

This proves the result for n, so the result is true for all n ≥ 0, by induction.

Example. Let n ∈ Z, n ≥ 1. Prove that

1 1 1 1
+ + ···+ =1− .
1·2 2·3 n(n + 1) n+1

You may have seen this idea when you learned about infinite series; it’s called telescoping:
     
1 1 1 1 1 1 1 1 1
+ + ···+ = − + − + ···+ − .
1·2 2·3 n(n + 1) 1 2 2 3 n n+1

1
The “argument” is that the terms cancel in pairs, leaving 1 − .
n+1
Arguments where you say “and so on” are often justified rigorously by induction. That’s what I’ll do
here.
For n = 1,
1 1 1 1 1 1 1
+ + ···+ = = , while = .
1·2 2·3 n(n + 1) 1·2 2 n(n + 1) 2
The result is true for n = 1.
Assume that the result is true for n:

1 1 1 1
+ + ···+ =1− .
1·2 2·3 n(n + 1) n+1

5
I want to show that the result holds for n + 1.

1 1 1 1 1 1
+ + ··· + + =1− +
1·2 2·3 n(n + 1) (n + 1)(n + 2) n + 1 (n + 1)(n + 2)
 
1 1
=1− 1−
n+1 n+2
1 (n + 2) − 1
=1−
n+1 n+2
1 n+1
=1−
n+1n+2
1
=1−
n+2

This proves the result for n + 1, so the result is true for all n ≥ 1, by induction.

In some situations, it’s convenient to give an induction proof in the following form:

1. Prove P1 .

2. Let n > 1, and assume Pk is true for all k < n.

3. Using the assumption that Pk is true for all k < n, prove that Pn must be true.

In other words, you can take as your induction hypothesis the truth of all the statements prior to the
nth statement, which you are trying to prove. This is sometimes called generalized induction or strong
induction.

Example. Define a sequence of integers by

x0 = 9, x1 = 18, and xn = 5xn−1 + 14xn−2 for n ≥ 2.

Prove that
xn = 4 · 7n + 5 · (−2)n for n ≥ 0.

To get the induction started, I have to verify the formula xn = 4 · 7n + 5 · (−2)n for both n = 0 and
n = 1. The reason is that the recursion formula doesn’t kick in till n = 2.
For n = 0, the formula gives
4 · 70 + 5 · (−2)0 = 9 = x0 .
For n = 1, the formula gives
4 · 71 + 5 · (−2)1 = 18 = x1 .
The formula holds for n = 0 and n = 1.
Now assume that n ≥ 2 and the formula holds for all k < n, i.e. for all numbers less than n. In
particular, since n − 1 and n − 2 are less than n, I have

xn−1 = 4 · 7n−1 + 5 · (−2)n−1 and xn−2 = 4 · 7n−2 + 5 · (−2)n−2 .

The fact that I need both of these formulas to do the induction step is why I’m using a generalized or
strong induction. If I did a standard induction where I just assumed the result for n − 1, I would not have
it for n − 2.

6
I have to show that the formula holds for n. I start with the recursion formula that defines xn , substitute
the results for xn−1 and xn−2 , and do some algebra:

xn = 5xn−1 + 14xn−2
= 5 4 · 7n−1 + 5 · (−2)n−1 + 14 4 · 7n−2 + 5 · (−2)n−2
 

= 20 · 7n−1 + 56 · 7n−2 + 25 · (−2)n−1 + 70 · (−2)n−2


 

= 4 · 7n−2 (5 · 7 + 14) + 5 · (−2)n−2 (5 · (−2) + 14)


= 4 · 7n−2 · 49 + 5 · (−2)n−2 · 4
= 4 · 7n−2 · 72 + 5 · (−2)n−2 · (−2)2
= 4 · 7n + 5 · (−2)n

This proves the result for n, so the result holds for all n ≥ 0 by induction.
Here are some remarks about the algebra I did. My target expression 4 · 7n + 5 · (−2)n has a power of
7 and a power of −2. So I began by grouping terms into powers of 7 and powers of −2.
Next, to try to make what I had look like what I wanted, I factor out 4 · 7n−2 and 5 · (−2)n−2 . Then
simplifying what was left produced the powers (72 and (−2)2 ) that I needed to finish. Perhaps it looks like
magic, but as we’ve seen in other proofs, if your steps are correct, it has to work — you know what the final
expression should be.

In the examples that follow, I use induction to prove inequalities and a divisibility result. The general
setup for the inductions remains the same — it’s just the specific work that differs.
Example. Prove that
8n ≥ 6n + 28 for n ≥ 2.

For n = 2,
8n = 82 = 64 while 6n + 28 = 62 + 28 = 64.
The result holds for n = 2.
Assume that the result holds for n:
8n ≥ 6n + 28.
I’ll prove it for n + 1. To get the proof started, I make a “8n ” term appear using algebra, so I can use
the induction assumption.
8n+1 = 8 · 8n
≥ 8 · (6n + 28)
= 8 · 6n + 224
> 6 · 6n + 28
= 6n+1 + 28
(In the inequality which gave the second-to-the-last line, I used the facts that 8 > 6 and 224 > 28 to
replace the existing terms so I could match the target.)
This proves the result for n + 1, so the result is true for all n ≥ 2 by induction.

Example. Prove that for n ≥ 6,


3n > 2n3 .

In this case, the basis step is n = 6, because the result is to be proved for n ≥ 6. (Try some numbers
and you’ll find the 2n3 can be bigger than 3n for some numbers smaller than 6 .)

7
For n = 6,
3n = 36 = 729 while 2n3 = 2 · 63 = 432.
The result is true for n = 6.
Assume that the result holds for n:
3n > 2n3 .
I have to prove the result for n + 1.
3n+1 = 3 · 3n
> 3 · 2n3
= 6n3
Thus, I have
3n+1 > 6n3 .
On scratch paper, I see that my target inequality is

3n+1 > 2(n + 1)3 = 2n3 + 6n2 + 6n + 2.

So my strategy will be to break up the 6n3 that I have so far into 4 pieces, each of which will be greater
than or equal to one of the 4 pieces of 2n3 + 6n2 + 6n + 2. I will do this in steps.
Since n ≥ 6 and 3 > 2, I have
3n3 > 2n3 . (1)
Again, since n ≥ 6, multiplying both sides by n2 , I get

n3 ≥ 6n2 . (2)

Since n ≥ 6 > 0, it follows that n2 ≥ 6n > n. So taking the last inequality and adding another term, I
have
n3 ≥ 6n2 > 6n. (3)
Finally, n ≥ 6 gives
n3 ≥ 216 > 2. (4)
Adding the inequalities (1), (2), (3), and (4), I have

3n3 + n3 + n3 + n3 > 2n3 + 6n2 + 6n + 2


6n3 > 2n3 + 6n2 + 6n + 2

Combine this with the inequality I proved earlier:

3n+1 > 6n3


> 2n3 + 6n2 + 6n + 2
= 2(n3 + 3n2 + 3n + 1)
= 2(n + 1)3

This proves the result for n + 1, so the result is true for all n ≥ 6 by induction.
There are other ways to prove the key inequality 6n3 > 2n3 + 6n2 + 6n + 2. For example, you could use
calculus: After some algebra, you get the inequality 2n3 − 3n2 − 3n − 1 > 0. Take f (n) = 2n3 − 3n2 − 3n − 1.
Note that f (6) > 0, and show that f ′ (n) > 0 for n ≥ 6, so the function increases.

This proof is a little involved, so for starters try to understand why each step is correct before trying to
grasp the whole. Don’t feel bad if you think that you wouldn’t have figured this out by yourself! There are

8
math problems that stump even the best mathematicians. The more experience you get, the more you will
be able to do by yourself.

For the next example, remember that if m and n are integers, m divides n (in symbols, m | n) if mk = n
for some integer n.

Example. Prove that for n ≥ 0,


6 | 52n − 1.

You can do this proof directly, without induction. But I’ll give an induction proof by way of example.
For n = 0, I have
52n − 1 = 50 − 1 = 0.

Since 6 | 0, the result holds for n = 0.


Assume that the result holds for n:
6 | 52n − 1.

I can write this as 6k = 52n − 1 for some integer k, or

52n = 6k + 1.

I must prove the result for n + 1. As usual, the first thing I’ll do is to work on the given expression to
get (part of) the induction assumption to appear.

52(n+1) − 1 = 5(2n+2) − 1
= 52n · 52 − 1

I have the “52n ” which is part of the induction assumption. Now 6 | 52n − 1 means 6k = 52n − 1 for
some integer k, or
52n = 6k + 1.

Substituting this into the expression above, I get

52n · 52 − 1 = (6k + 1) · 25 − 1
= 6(25k) + 25 − 1
= 6(25k) + 24
= 6(25k + 4)

All together,
52(n+1) − 1 = 6(25k + 4).

Therefore, 6 | 52(n+1) − 1. This proves the result for n + 1, so the result holds for n ≥ 0 by induction.

Here’s a sketch of a direct proof: Write 52n − 1 = (52 )n − 1 = 25n − 1. Then use the formula

xn − 1 = (x − 1)(xn−1 + xn−2 + · · · + x + 1).

Lines and regions in the plane. This is an extended example which illustrates how you might “guess” a
formula, then confirm it using induction.

9
Suppose we draw lines in the plane, one after another:

Each line that we draw should satisfy the following conditions:


1. It should not be parallel to any of the previous lines.
2. It should intersect all of the previous lines.
3. It should not pass through the intersection point of any two of the previous lines.
The lines in the picture above satisfy these conditions.
Question: Into how many regions do the lines divide the plane?
Before we even consider this question, we should be careful that we can actually do what we require.
In particular, how do we know we can satisfy conditions 2 and 3?

Try it yourself (maybe with a drawing program on a computer). It starts to become a little tricky to
get the next line to cross all of the previous lines. Imagine that you had 100 lines and you were trying to
draw one more!
I’ll prove this is possible by induction.
Proposition. Suppose there are n lines in the plane, each of which intersects all the others, and such that
no three lines intersect. Then there is a line which intersects all n lines, and does not go through any of
their intersections.
Proof. From geometry, two lines are parallel if and only if they have the same slope. So if two lines have
different slopes, they aren’t parallel, and they must intersect. We’ll use this to give an induction proof.
We can get started and draw the first line wherever we want.
Then suppose we’ve draw lines L1 , L2 , and so on, all the way up to Ln . We want to draw the (n + 1)st
line so that it intersects the n previous lines.
Suppose the slope of L1 is m1 , the slope of L2 is m2 , and so on. We have n slopes:
m1 , m2 , ... mn .
These are n different numbers (where a “number” could include the designation “undefined” if one of
the lines is vertical). The numbers are different because these n lines intersect, and these numbers are their
slopes.

10
Pick a number mn+1 which is different from all of these m’s. To make the arguments that follow easier,
I’ll also assume mn+1 is not “undefined”. I can pick such a number mn+1 because there are infinitely many
real numbers, so there are real numbers different from the previous m’s and “undefined”.
Consider a line Ln+1 with slope mn+1 . Since mn+1 is different from all the other m’s, the line Ln+1
must intersect the n previous lines.
How can we ensure that this new line does not go through the intersections of any of the previous lines?
The n previous lines intersect in a finite number of points. Consider the lines with slope mn+1 which go
through these intersection points.

In the picture above, the dots represent the intersection point of the previous lines, and the lines I’ve
drawn show the lines with slope mn+1 which pass through them.
Each of those lines has a y-intercept, so there are finitely many such y-intercepts.

Let’s say the y-intercepts are b1 , b2 , and so on. Because there are only finitely many b’s, I can choose a
number b different from all of them.
Consider the line y = mn+1 x+ b. It has slope mn+1 , so it intersects all the previous lines. Its y-intercept
is different from the y-intercepts of all the intersection point lines, so it does not pass through any of the
intersection points.
This proves the result for n lines, so it’s true for any number of lines, by induction.

At this point, we know our question makes sense, so we can think about answering it. Let’s see if we
can see a pattern.

1 line,
2 regions 3 lines,
2 lines, 7 regions
4 regions

11
We go from 2 regions to 4 regions, and 2 + 2 = 4. We go from 4 regions to 7 regions, and 4 + 3 = 7.
If you draw a picture, you’ll find that with 4 lines there are 11 regions, and 7 + 4 = 11. Let’s set up some
notation. Let xn be the number of regions made by n lines. It appears that

xn+1 = xn + (n + 1) for n ≥ 1.

The formula seems to work for n = 1, 2, 3.


Let’s see if we can verify this with a picture. Suppose I have n lines. When I draw the (n + 1)st line, it
must cross each of the previous n lines. Schematically:

As the new line crosses L1 , it splits the region on the left of L1 , and one new region is added. As the
new line crosses L2 , it splits the region between L1 and L2 , and one new region is added. And so on. All
together, n + 1 new regions are added. That is, n + 1 regions are added to xn to get xn+1 .
This recursion isn’t bad, but it would be nice to have a “closed-form” expression which gives xn in terms
of n. We’ll show how to go from the recursion to such an expression in the next theorem.

Theorem. Suppose n ≥ 1, and a sequence is defined recursively by x1 = 2, and

xn+1 = xn + (n + 1) for n ≥ 1.

Then for n ≥ 1,
n(n + 1)
xn = + 1.
2

Proof. Method 1. This method doesn’t use induction, but I’ll point out afterward some details which it
omits.
Write out the recursion xn = xn−1 + n for n = 2, 3, . . . n, then add the equations:

x2 = x1 + 2
x3 = x2 + 3
x4 = x3 + 4
..
.
xn = xn−1 + n
x2 + x3 + x4 + · · · + xn = x1 + x2 + x3 + · · · + xn−1 + (2 + 3 + 4 + · · · + n)

I subtract x2 + x3 + · · · + xn−1 from both sides:

xn = x1 + (2 + 3 + 4 + · · · + n).

Now
n(n + 1) n(n + 1)
1 + 2 + 3 + 4 + ···+ n = , so 2 + 3 + 4 + · · · + n = − 1.
2 2
12
Also, x1 = 2. Plugging these into the equation for xn , I get
 
n(n + 1) n(n + 1)
xn = 2 + −1 = + 1.
2 2
Method 2. For n = 1, the formula gives
1·2
x1 = + 1 = 2.
2
The result holds for n = 1.
Assume that the result is true for n:
n(n + 1)
xn = + 1.
2
I will prove it for n + 1:
xn+1 = xn + (n + 1)
 
n(n + 1)
= + 1 + (n + 1)
2
 
n(n + 1) 2(n + 1)
= + +1
2 2
n+1
= · (n + 2) + 1
2
(n + 1)(n + 2)
= +1
2
This proves the result for n + 1, so the result is true for all n ≥ 1 by induction.
The first method may seem pretty appealing — you may have seen similar techniques used in computing
values of infinite series (“telescoping”). Depending on what you’re willing to assume, this may be adequate
as a proof. Let’s note a couple of things.
First, what does “x2 + x3 + x4 + · · · + xn ” mean? Maybe it’s obvious to you: It means “add up the
numbers x2 , x3 , and so on up to xn . However, addition is a binary operation: It tells you how to add 2
numbers at a time, not 100 numbers or n − 1 numbers. Adding more than two numbers at a time actually
requires a definition.
Well, you might say: Just add the numbers two at a time. And in fact, you can define a sum of more
than 2 numbers recursively in this way: If you already know how to add n numbers, then to add n + 1
numbers, you can make the following definition:
x1 + x2 + · · · + xn + xn+1 = (x1 + x2 + · · · + xn ) + xn+1 .
The right side is a sum of two numbers, so this works.
But a second issue arises, and that is that the definition above picks a particular way of grouping the
numbers when you add. Now the associative law for addition tells you that you get the same thing when
you group 3 numbers for addition in two different ways:
a + (b + c) = (a + b) + c.
However, when I write “x2 + x3 + x4 + · · · + xn ” I’m implying that if I add any number of numbers, I
get the same result regardless of how I group the additions. For example,
(a + b) + (c + (d + e)) = a + (b + (c + (d + e))).
Try deriving the last line using associativity for just three numbers. We’re saying that the same thing
works for any grouping, and any number of numbers. And it’s true! How do you prove it? You use induction!
I won’t give the proof here, but you might try it yourself as a challenge.
In other math courses, you didn’t worry about these issues, and things work the way you’d expect. But
as you’ve already noticed, proving things is a lot harder than simply know or believing that they’re true.

c 2020 by Bruce Ikenaga 13

You might also like