11.4 Mathematical Induction

  • Prove infinite sequences of statements using mathematical induction.

In this section, we learn to prove a sequence of mathematical statements using a procedure called mathematical induction.

Proving Infinite Sequences of Statements

Infinite sequences of statements occur often in mathematics. In an infinite sequence of statements, there is a statement for each natural number. For example, consider the sequence of statements represented by the following:

“The sum of the first n positive odd integers is n2,” or 1+3+5++(2n1)=n2.

Let’s think of this as S(n), or Sn. Substituting natural numbers for n gives a sequence of statements. We list the first four:

  • S1:1=12;
  • S2:1+3=4=22;
  • S3:1+3+5=9=32;
  • S4:1+3+5+7=16=42.

The fact that the statement is true for n=1, 2, 3, and 4 might tempt us to conclude that the statement is true for any natural number n, but we cannot be sure that this is the case. We can, however, use the principle of mathematical induction to prove that the statement is true for all natural numbers.

Mathematical induction is analogous to lining up a sequence of dominoes. The induction step tells us that if any one domino is knocked over, then the one next to it will be hit and knocked over. The basis step tells us that the first domino can indeed be knocked over. Note that in order for all dominoes to fall, both conditions must be satisfied.

Example 1

Prove: For every natural number n,

1+3+5++(2n1)=n2.

Proof. We first write out Sn, S1, Sk, and Sk+1.

Sn:
1+3+5++(2n1)=n2
S1:
1=12
Sk:
1+3+5++(2k1)=k2
Sk+1:
1+3+5++(2k1)+[2(k+1)1]=(k+1)2
  1. Basis step. S1, as listed, is true since 1=12, or 1=1.

  2. Induction step. We let k be any natural number. We assume Sk to be true and try to show that it implies that Sk+1 is true. Now Sk is

    1+3+5++(2k1)=k2.

    Starting with the left side of Sk+1 and substituting k2 for 1+3+5++(2k1), we have

    We have shown that for all natural numbers k, SkSk+1. This completes the induction step. It and the basis step tell us that the proof is complete.

Now Try Exercise 5.

Example 2

Prove: For every natural number n,

12+14+18++12n=2n12n.

Proof.

We first list Sn, S1, Sk, and Sk+1.

Sn:
12+14+18++12n=2n12n
S1:
121=21121
Sk:
12+14+18++12k=2k12k
Sk+1:
12+14+18++12k+12k+1=2k+112k+1
  1. Basis step. We show S1 to be true as follows:

    21121=212=12.
  2. Induction step. We let k be any natural number. We assume Sk to be true and try to show that it implies that Sk+1 is true. Now Sk is

    12+14+18++12k=2k12k.

    We start with the left side of Sk+1. Since we assume that Sk is true, we can substitute

    2k12kfor12+14++12k.

    We have

    We have shown that for all natural numbers k, SkSk+1. This completes the induction step. It and the basis step tell us that the proof is complete.

Now Try Exercise 15.

Example 3

Prove: For every natural number n, n<2n.

Proof. We first list Sn, S1, Sk, and Sk+1.

Sn:
n<2n
S1:
1<21
Sk:
k<2k
Sk+1:
k+1<2k+1
  1. Basis step. S1, as listed, is true since 21=2 and 1<2.

  2. Induction step. We let k be any natural number. We assume Sk to be true and try to show that it implies that Sk+1 is true. Now

    k<2kThis is Sk.2k<22kMultiplying by 2 on both sides2k<2k+1Adding exponents on the rightk+k<2k+1.Rewriting 2k as k+k

    Since k is any natural number, we know that 1k. Thus,

    k+1k+k.Adding k on both sides of 1k

    Putting the results k+1k+k and k+k<2k+1 together gives us

    k+1<2k+1.This is Sk+1.

    We have shown that for all natural numbers k, SkSk+1. This completes the induction step. It and the basis step tell us that the proof is complete.

Now Try Exercise 11.

11.4 Exercise Set

List the first five statements in the sequence that can be obtained from each of the following. Determine whether each of the five statements is true or false.

  1. 1. n2<n3

  2. 2. n2n+41 is prime. Find a value for n for which the statement is false.

  3. 3. A polygon of n sides has [n(n3)]/2 diagonals.

  4. 4. The sum of the angles of a polygon of n sides is (n2)180°.

Use mathematical induction to prove each of the following.

  1. 5. 2+4+6++2n=n(n+1)

  2. 6. 4+8+12++4n=2n(n+1)

  3. 7. 1+5+9++(4n3)=n(2n1)

  4. 11. 3+6+9++3n=3n(n+1)2

  5. 9. 2+4+8++2n=2(2n1)

  6. 10. 22n

  7. 11. n<n+1

  8. 12. 3n<3n+1

  9. 13. 2n2n

  10. 14. 112+123++1n(n+1)=nn+1

  11. 15. 1123+1234+1345++1n(n+1)(n+2)=n(n+3)4(n+1)(n+2)

  12. 16. If x is any real number greater than 1, then for any natural number n,xxn.

The following formulas can be used to find sums of powers of natural numbers. Use mathematical induction to prove each formula.

  1. 17. 1+2+3++n=n(n+1)2

  2. 18. 12+22+32++n2=n(n+1)(2n+1)6

  3. 19. 13+23+33++n3=n2(n+1)24

  4. 20. 14+24+34++n4=n(n+1)(2n+1)(3n2+3n1)30

Use mathematical induction to prove each of the following.

  1. 21. i=1ni(i+1)=n(n+1)(n+2)3

  2. 22. (1+11)(1+12)(1+13)(1+1n)=n+1

  3. 23. The sum of n terms of an arithmetic sequence:

    a1+(a1+d)+(a1+2d)++[a1+(n1)d]=n2[2a1+(n1)d]

Skill Maintenance

Solve.

  1. 24. 2x3y=1,3x4y=3 [9.1], [9.3], [9.5], [9.6]

  2. 25. Investment. Clarise received $104 in simple interest one year from three investments. Part is invested at 1.5%, part at 2%, and part at 3%. The amount invested at 2% is twice the amount invested at 1.5%. There is $400 more invested at 3% than at 2%. Find the amount invested at each rate. [9.2], [9.3], [9.5], [9.6]

Synthesis

Use mathematical induction to prove each of the following.

  1. 26. The sum of n terms of a geometric sequence:

    a1+a1r+a1r2++a1rn1=a1a1rn1r
  2. 27. x+y is a factor of x2ny2n.

Prove each of the following using mathematical induction. Do the basis step for n=2.

  1. 28. For every natural number n2,

    2n+1<3n.
  2. 29. For every natural number n2,

    loga (b1b2  bn)=logab1+logab2++logabn.

Prove each of the following for any complex numbers z1,z2,,zn, where i2=1 and z¯ is the conjugate of z.

  1. 30. zn¯=z¯n

  2. 31. z1+z2++zn¯=z1¯+z2¯++zn¯

  3. 32. The Tower of Hanoi Problem. There are three pegs on a board. On one peg are n disks, each smaller than the one on which it rests. The problem is to move this pile of disks to another peg. The final order must be the same, but you can move only one disk at a time and can never place a larger disk on a smaller one.

    1. What is the fewest number of moves needed to move 3 disks? 4 disks? 2 disks? 1 disk?

    2. Conjecture a formula for the fewest number of moves needed to move n disks. Prove it by mathematical induction.

Mid-Chapter Mixed Review

Determine whether the statement is true or false.

  1. The general term of the sequence 1, −2, 3, −4, … can be expressed as an=n. [11.1]

  2. To find the common difference of an arithmetic sequence, choose any term except the first and then subtract the preceding term from it. [11.2]

  3. The sequence 7, 3, −1, −5,… is geometric. [11.2], [11.3]

  4. If we can show that SkSk+1 for some natural number k, then we know that Sn is true for all natural numbers n. [11.4]

In each of the following, the nth term of a sequence is given. Find the first 4 terms, a9, and a14. [11.1]

  1. an=3n+5

  2. an=(1)n+1(n1)

Predict the general term, or nth term, an, of the sequence. Answers may vary. [11.1]

  1. 3, 6, 9, 12, 15, …

  2. −1, 4, −9, 16, −25,…

  3. Find the partial sum S4 for the sequence 1, 12, 14, 18, 116. [11.1]

  4. Find and evaluate the sum k=15k(k+1). [11.1]

  5. Write sigma notation for the sum 4+812+1620+. [11.1]

  6. Find the first 4 terms of the sequence defined by a1=2,an+1=4an2. [11.1]

  7. Find the common difference of the arithmetic sequence 12, 7, 2, −3, …. [11.2]

  8. Find the 10th term of the arithmetic sequence 4, 6, 8, 10, …. [11.2]

  9. In the sequence in Exercise 14, what term is the number 44? [11.2]

  10. Find the sum of the first 16 terms of the arithmetic series 6+11+16+21+. [11.2]

  11. Find the common ratio of the geometric sequence 16, −8, 4, −2, 1,…. [11.3]

  12. Find (a) the 8th term and (b) the sum of the first 10 terms of the geometric sequence 116, 18, 14, 12, 1,. [11.3]

Find the sum, if it exists. [11.3]

  1. 8+42+1

  2. k=05k

  3. Landscaping. A landscaper is planting a triangular flower bed with 36 plants in the first row, 30 plants in the second row, 24 in the third row, and so on, for a total of 6 rows. How many plants will be planted in all? [11.2]

  4. Amount of an Annuity. To save money for adding a bedroom to their home, at the end of each of 4 years the Davidsons deposit $1500 in an account that pays 4% interest, compounded annually. Find the total amount of the annuity. [11.3]

  5. Prove: For every natural number n,

    1+4+7++(3n2)=12n(3n1). [11.4]

Collaborative Discussion and Writing

  1. The sum of the first n terms of an arithmetic sequence can be given by

    Sn=n2[2a1+(n1)d].

    Compare this formula to

    Sn=n2(a1+an).

    Discuss the reasons for the use of one formula over the other. [11.2]

  2. It is said that as a young child, the mathematician Karl F. Gauss (1777–1855) was able to compute the sum 1+2+3++100 very quickly in his head to the amazement of a teacher. Explain how Gauss might have done this had he possessed some knowledge of arithmetic sequences and series. Then give a formula for the sum of the first n natural numbers. [11.2]

  3. Write a problem for a classmate to solve. Devise the problem so that a geometric series is involved and the solution is “The total amount in the bank is 900(1.08)40, or about $19,552.” [11.3]

  4. Write an explanation of the idea behind mathematical induction for a fellow student. [11.4]

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.190.159.10