11.1 Sequences and Series

  • Find terms of sequences given the nth term.

  • Look for a pattern in a sequence and try to determine a general term.

  • Convert between sigma notation and other notation for a series.

  • Construct the terms of a recursively defined sequence.

In this section, we discuss sets or lists of numbers, considered in order, and their sums.

Sequences

Suppose that $1000 is invested at 4%, compounded annually. The amounts to which the account will grow after 1 year, 2 years, 3 years, 4 years, and so on, form the following sequence of numbers:

(1)$1040.00(2)$1081.00(3)$1124.86(4)$1169.86.

We can think of this as a function that pairs 1 with $1040.00, 2 with $1081.60, 3 with $1124.86, and so on. A sequence is thus a function, where the domain is a set of consecutive positive integers beginning with 1.

If we continue to compute the amounts of money in the account forever, we obtain an infinite sequence with function values

$1040.00,$1081.60,$1124.86,$1169.86,$1216.65,$1265.32, .

The dots “…” at the end indicate that the sequence goes on without stopping. If we stop after a certain number of years, we obtain a finite sequence:

$1040.00,$1081.60,$1124.86,$1169.86.

Consider the sequence given by the formula

a(n)=2n,oran=2n.

Some of the function values, also known as the terms of the sequence, follow:

a1a2a3a4a5=====21=2,22=4,23=8,24=16,25=32.

The first term of the sequence is denoted as a1, the fifth term as a5, and the nth term, or general term, as an. This sequence can also be denoted as

2, 4, 8,,or  as2, 4, 8,,2n,.

Example 1

Find the first 4 terms and the 23rd term of the sequence whose general term is given by an=(1)nn2.

Solution

We have an=(1)nn2, so

a1a2a3a4a23=====(1)112=1,(1)222=4,(1)332=9,(1)442=16,(1)23232=529.

Now Try Exercise 1.

Note in Example 1 that the power (1)n causes the signs of the terms to alternate between positive and negative, depending on whether n is even or odd. This kind of sequence is called an alternating sequence.

We can graph a sequence just as we graph other functions. Consider the function given by f(x)=x+1 and the sequence whose general term is given by an=n+1. The graph of f(x)=x+1 is shown on the left below. Since the domain of a sequence is a set of positive integers, the graph of a sequence is a set of points that are not connected. Thus if we use only positive integers for inputs of f(x)=x+1, we have the graph of the sequence an=n+1, as shown on the right below.

Finding the General Term

When only the first few terms of a sequence are known, we do not know for sure what the general term is, but we might be able to make a prediction by looking for a pattern.

Example 2

For each of the following sequences, predict the general term.

  1. 1,2,3, 2,

  2. −1, 3, −9, 27, −81,…

  3. 2, 4, 8,…

Solution

  1. These are square roots of consecutive integers, so the general term might be n.

  2. These are powers of 3 with alternating signs, so the general term might be (1)n3n1.

  3. If we see the pattern of powers of 2, we will see 16 as the next term and guess 2n for the general term. Then the sequence could be written with more terms as

    2, 4, 8, 16, 32, 64, 128,.

    If we see that we can get the second term by adding 2, the third term by adding 4, and the next term by adding 6, and so on, we will see 14 as the next term. A general term for the sequence is n2n+2, and the sequence can be written with more terms as

    2, 4, 8, 14, 22, 32, 44, 58,.

Now Try Exercise 19.

Example 2(c) illustrates that, in fact, you can never be certain about the general term when only a few terms are given. The fewer the number of given terms, the greater the uncertainty.

Sums and Series

Example 3

For the sequence −2, 4, −6, 8, −10, 12, −14,…, find each of the following.

  1. S1

  2. S4

  3. S5

Solution

  1. S1=2

  2. S4=2+4+(6)+8=4

  3. S5=2+4+(6)+8+(10)=6

Now Try Exercise 29.

Sigma Notation

The Greek letter Σ (sigma) can be used to denote a sum when the general term of a sequence is a formula. For example, the sum of the first four terms of the sequence 3, 5, 7, 9,  …, 2k+1, can be named as follows, using what is called sigma notation, or summation notation:

k=14(2k+1).

This is read “the sum as k goes from 1 to 4 of 2k+1.” The letter k is called the index of summation. The index of summation might start at a number other than 1, and letters other than k can be used.

Example 4

Find and evaluate each of the following sums.

  1. k=15k3

  2. k=04(1)k5k

  3. i=811(2+1i)

Solution

  1. We replace k with 1, 2, 3, 4, and 5. Then we add the results.

    k=15k3===13+23+33+43+531+8+27+64+125225
  2. k=04(1)k5k==(1)050+(1)151+(1)252+(1)353+(1)45415+25125+625=521
  3. i=811(2+1i)==(2+18)+(2+19)+(2+110)+(2+111)816913960

Now Try Exercise 33.

Example 5

Write sigma notation for each sum.

  1. 1+2+4+8+16+32+64

  2. 2+46+810

  3. x+x22+x33+x44+

Solution

  1. 1+2+4+8+16+32+64

    This is the sum of powers of 2, beginning with 20, or 1, and ending with 26, or 64. Sigma notation is 6k=02k.

  2. 2+46+810

    Disregarding the alternating signs, we see that this is the sum of the first 5 even integers. Note that 2k is a formula for the kth positive even integer, and (1)k=1 when k is odd and (1)k=1 when k is even. Thus the general term is (1)k(2k). The sum begins with k=1 and ends with k=5, so sigma notation is 5k=1(1)k(2k).

  3. x+x22+x33+ x44+

    The general term is xk/k, beginning with k=1. This is also an infinite series. We use the symbol for infinity and write the series using sigma notation: k=1(xk/k).

Now Try Exercise 51.

Recursive Definitions

A sequence can be defined recursively or by using a recursion formula. Such a definition lists the first term, or the first few terms, and then describes how to determine the remaining terms from the given terms.

Example 6

Find the first 5 terms of the sequence defined by

a1=5,an+1=2an3,for n1.

Solution

We have

Now Try Exercise 61.

11.1 Exercise Set

In each of the following, the nth term of a sequence is given. Find the first 4 terms, a10, and a15.

  1. 1. an=4n1

  2. 2. an=(n1)(n2)(n3)

  3. 3. an=nn1, n2

  4. 4. an=n21, n3

  5. 5. an=n21n2+1

  6. 6. an=(12)n1

  7. 7. an=(1)nn2

  8. 11. an=(1)n1(3n5)

  9. 9. an=5+(2)n+12n

  10. 10. an=2n1n2+2n

Find the indicated term of the given sequence.

  1. 11. an=5n6; a8

  2. 12. an=(3n4)(2n+5); a7

  3. 13. an=(2n+3)2; a6

  4. 14. an=(1)n1(4.6n18.3); a12

  5. 15. an=5n2(4n100); a11

  6. 16. an=(1+1n)2; a80

  7. 17. an=lnen; a67

  8. 18. an=21000n; a100

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

  1. 19. 2, 4, 6, 8, 10, …

  2. 20. 3, 9, 27, 81, 243, …

  3. 21. −2, 6, −18, 54,…

  4. 22. −2, 3, 8, 13, 18,…

  5. 23. 23, 34, 45, 56, 67,

  6. 24. 2, 2,6, 22,10,

  7. 25. 12, 23, 34, 45,

  8. 26. −1, −4, −7, −10, −13,…

  9. 27. 0, log 10, log 100, log 1000,…

  10. 28. lne2, lne3, lne4, lne5,

Find the indicated partial sums for the sequence.

  1. 29. 1, 2, 3, 4, 5, 6, 7, …; S3 and S7

  2. 30. 1, 3, 5, 7, 9, 11,; S2 and S5

  3. 31. 2, 4, 6, 8, …; S4 and S5

  4. 32. 1, 14, 19, 116, 125,; S1 and S5

Find and evaluate the sum.

  1. 33. k=1512k

  2. 34. i=1612i+1

  3. 35. i=062i

  4. 36. k=472k1

  5. 37. k=710ln k

  6. 38. k=14πk

  7. 39. k=18kk+1

  8. 40. i=15i1i+3

  9. 41. i=15(1)i

  10. 42. k=05(1)k+1

  11. 43. k=18(1)k+13k

  12. 44. k=07(1)k4k+1

  13. 45. k=062k2+1

  14. 46. i=110i(i+1)

  15. 47. k=05(k22k+3)

  16. 48. k=1101k(k+1)

  17. 49. i=0102i2i+1

  18. 50. k=03(2)2k

Write sigma notation. Answers may vary.

  1. 51. 5+10+15+20+25+

  2. 52. 7+14+21+28+35+

  3. 53. 24+816+3264

  4. 54. 3+6+9+12+15

  5. 55. 12+2334+4556+67

  6. 56. 112+122+132+142+152

  7. 57. 49+1625++(1)nn2

  8. 58. 916+25++(1)n+1n2

  9. 59. 112+123+134+145+

  10. 60. 1122+1232+1342+1452+

Find the first 4 terms of the recursively defined sequence.

  1. 61. a1=4, an+1=1+1an

  2. 62. a1=256, an+1=an

  3. 63. a1=6561, an+1=(1)nan

  4. 64. a1=eQ, an+1=lnan

  5. 65. a1=2, a2=3, an+1=an+an1

  6. 66. a1=10, a2=8, an+1=anan1

  7. 67. Compound Interest. Suppose that $1000 is invested at 6.2%, compounded annually. The value of the investment after n years is given by the sequence model

    an=$1000(1.062)n,n=1, 2, 3,.
    1. Find the first 10 terms of the sequence.

    2. Find the value of the investment after 20 years.

  8. 68. Salvage Value. The value of a post-hole digger is $5200. Its salvage value each year is 75% of its value the year before. Give a sequence that lists the salvage value of the machine for each year of a 10-year period.

  9. 69. Wage Sequence. Adahy is paid $9.80 per hour for working at Red Freight Limited. Each year he receives a $1.10 hourly raise. Give a sequence that lists Adahy’s hourly wage over a 10-year period.

  10. 70. Bacteria Growth. Suppose that a single cell of bacteria divides into two every 15 min. Suppose that the same rate of division is maintained for 4 hr. Give a sequence that lists the number of cells after successive 15-min periods.

  11. 71. Fibonacci Sequence: Rabbit Population Growth. One of the most famous recursively defined sequences is the Fibonacci sequence. In 1202, the Italian mathematician Leonardo da Pisa, also called Fibonacci, proposed the following model for rabbit population growth. Suppose that every month each mature pair of rabbits in the population produces a new pair that begins reproducing after two months, and also suppose that no rabbits die. Beginning with one pair of newborn rabbits, the population can be modeled by the following recursively defined sequence:

    a1=1,a2=1,an=an1+an2, for n3,

    where an is the total number of pairs of rabbits in month n. Find the first 7 terms of the Fibonacci sequence.

Skill Maintenance

Solve. [6.1], [6.3], [6.5], [6.6]

  1. 72. 3x2y=3,2x+3y=11

  2. 73. Harvesting Pumpkins. A total of 23,400 acres of pumpkins were harvested in Illinois and Ohio in 2012. The number of acres of pumpkins harvested in Ohio was 9000 fewer than the number of acres of pumpkins harvested in Illinois. (Source: U. S. Department of Agriculture) Find the number of acres of pumpkins harvested in Illinois and in Ohio in 2012.

Find the center and the radius of the circle with the given equation. [7.2]

  1. 74. x2+y26x+4y=3

  2. 75. x2+y2+5x8y=2

Synthesis

Find the first 5 terms of the sequence, and then find S5.

  1. 76. an=12nlog 1000n

  2. 77. an=in, i=1

  3. 78. an=ln (123n)

For each sequence, find a formula for Sn.

  1. 79. an=ln n

  2. 80. an=1n1n+1

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

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