Predicting What Comes Next: Sequences and Progressions

Chapter mind map: how it all connects
1 · Sequences and rulesAn ordered list of terms; explicit rules use position nn directly, recursive rules use the previous term
2 · Arithmetic ProgressionsConstant common difference dd; terms grow in a straight line
Sequences and Progressions
3 · Sum of first n naturalsGauss’s pairing trick gives Sn=n(n+1)2S_n = \frac{n(n+1)}{2}
4 · Geometric ProgressionsConstant common ratio rr; terms curve away, growing or shrinking fast
What you will learn in this chapter
  • How to describe a sequence with an explicit rule or a recursive rule, and when each is useful
  • What makes a sequence an Arithmetic Progression (AP), and how to find any term using tn=a+(n1)dt_n = a+(n-1)d
  • How to find the sum of the first nn natural numbers using Gauss’s pairing method
  • What makes a sequence a Geometric Progression (GP), and how to find any term using tn=arn1t_n = ar^{n-1}
sequenceexplicit rulerecursive rulearithmetic progressioncommon differencegeometric progressioncommon ratio

1Sequences: Terms and Rules

Learn by heartDefinition 1

A sequence is an ordered list of numbers, where each number is called a term. A sequence can be finite (a fixed number of terms) or infinite (continuing forever, shown by “\ldots“). We write t1t_1 for the first term, t2t_2 for the second term, and in general tnt_n for the nnth term.

Sequence Rule in words
1, 2, 3, 4, 5, … Natural numbers: each term is one more than the previous
1, 3, 5, 7, 9, … Odd numbers: difference of 2 between consecutive terms
1, 3, 6, 10, 15, … Triangular numbers: each term adds the next natural number
1, 4, 9, 16, 25, … Square numbers: each term adds the next odd number
Learn by heartDefinition 2

An explicit rule gives the value of tnt_n directly from its position number nn, e.g. tn=2n1t_n = 2n-1. A recursive rule gives tnt_n in terms of the previous term(s), e.g. t1=1, tn=tn1+3t_1=1,\ t_n = t_{n-1}+3 for n2n \ge 2. An explicit rule finds any term instantly; a recursive rule needs every earlier term to be known first.

Given

A sequence with explicit rule tn=3n2t_n = 3n-2

Find

The 10th term, and check whether 76 is a term

Solution

t10=3(10)2=  t_{10} = 3(10)-2 = \;2828

Solving 3n2=763n-2=76 gives 3n=783n=78, so n=26n=26: 76 is the 26th term

Given

A sequence with recursive rule u1=2, un=3un11u_1=2,\ u_n = 3u_{n-1}-1 for n2n \ge 2

Find

The first four terms

Solution

u2=3(2)1=5u_2 = 3(2)-1=5,   u3=3(5)1=14\;u_3 = 3(5)-1=14,   u4=3(14)1=41\;u_4 = 3(14)-1=41

First four terms: 2,5,14,412, 5, 14, 41

Did you know?

The sequence 1,2,3,5,8,13,21,1, 2, 3, 5, 8, 13, 21, \ldots (each term the sum of the previous two) is the Virahānka-Fibonacci sequence. It was first written down by the Indian scholar Virahānka in the 7th century CE, while studying the rhythms of Prakrit poetry, centuries before the Italian mathematician Fibonacci described it around 1200 CE.

2Arithmetic Progressions (AP)

Learn by heartDefinition 3

An Arithmetic Progression (AP) is a sequence in which every term after the first is obtained by adding a fixed number dd, the common difference, to the previous term. Its general form is a, a+d, a+2d, a+3d, a,\ a+d,\ a+2d,\ a+3d,\ \ldots, where aa is the first term.

Formula
nnth term of an AP: tn=a+(n1)d\quad t_n = a + (n-1)\,d
Recursive form: t1=a,  tn=tn1+dt_1 = a,\ \ t_n = t_{n-1} + d for n2n \ge 2
Given

An AP: 7, 11, 15, 19, …

Find

The 15th term

Solution

a=7a=7, d=4d=4.   t15=7+(151)(4)=7+56=  \;t_{15} = 7 + (15-1)(4) = 7+56 = \;6363

Given

A taxi charges a fixed booking fee of ₹200 plus ₹40 per km travelled

Find

The sequence of total fares, and the fare for 10 km

Solution

After 1, 2, 3 km the fares are ₹240, ₹280, ₹320, … an AP with a=240a=240, d=40d=40. Writing distance travelled as nn km,   tn=200+40n\;t_n = 200+40n.

For n=10n=10: t10=200+400=  t_{10} = 200+400 = \;₹600

Plotting (stage, value) pairs of an AP always gives points that lie on a straight line, while a GP’s points curve sharply away, as the chart below shows.

Line chart comparing an arithmetic progression 1,5,9,13,17 which lies on a straight line, with a geometric progression 3,6,12,24,48 which curves upward
Figure 1: An AP’s points always lie on a straight line; a GP’s points curve away as the terms grow multiplicatively.
Exam Tip

To test if a sequence is an AP, check that t2t1=t3t2=t4t3t_2-t_1 = t_3-t_2 = t_4-t_3, and so on. If the difference is not constant, it is not an AP.

3Sum of the First nn Natural Numbers

Let S=1+2+3++nS = 1+2+3+\cdots+n. Writing the same sum in reverse, S=n+(n1)++1S = n+(n-1)+\cdots+1. Adding the two, every pair of matching terms sums to n+1n+1, and there are nn such pairs:

Formula
2S=n(n+1)Sn=n(n+1)22S = n(n+1) \quad\Rightarrow\quad S_n = \dfrac{n(n+1)}{2}
Gauss’s pairing method: add the sequence to its own reverse
Did you know?

The earliest known written record of this formula appears in Āryabhaṭa’s Āryabhaṭīya (Chapter 2, Verse 19), composed around 499 CE, describing the sum as the average of the first and last term, multiplied by the number of terms.

Given

The sum of the first 40 natural numbers

Find

S40S_{40}, and the sum of the numbers from 41 to 60

Solution

S40=40×412=  S_{40} = \dfrac{40 \times 41}{2} = \;820820

41+42++60=S60S40=60×612820=1830820=  41+42+\cdots+60 = S_{60}-S_{40} = \dfrac{60\times 61}{2} – 820 = 1830-820 = \;10101010

Note

This same formula gives the nnth triangular number: tn=n(n+1)2t_n = \dfrac{n(n+1)}{2}, since each triangular number is the sum of the natural numbers up to that point.

4Geometric Progressions (GP)

Learn by heartDefinition 4

A Geometric Progression (GP) is a sequence in which every term after the first is obtained by multiplying the previous term by a fixed number rr, the common ratio. Its general form is a, ar, ar2, ar3, a,\ ar,\ ar^2,\ ar^3,\ \ldots, where aa is the first term.

Formula
nnth term of a GP: tn=arn1\quad t_n = a\,r^{\,n-1}
Recursive form: t1=a,  tn=rtn1t_1 = a,\ \ t_n = r \cdot t_{n-1} for n2n \ge 2. Test: t2t1=t3t2=\dfrac{t_2}{t_1} = \dfrac{t_3}{t_2} = \cdots must be constant
Given

A GP where the 3rd term is 12 and the 6th term is 96

Find

The common ratio and the first term

Solution

t3=ar2=12t_3 = ar^2 = 12 and t6=ar5=96t_6 = ar^5 = 96. Dividing, r3=9612=8r^3 = \dfrac{96}{12} = 8, so r=  r = \;22

Then a=12r2=124=  a = \dfrac{12}{r^2} = \dfrac{12}{4} = \;33

Given

A ball dropped from 50 m bounces back to 40% of its previous height each time

Find

The height reached after the 3rd bounce

Solution

Heights form a GP with a=50×0.4=20a = 50 \times 0.4 = 20 and r=0.4r = 0.4: 20, 8, 3.2, 20,\ 8,\ 3.2,\ \ldots

t3=20×(0.4)2=  t_3 = 20 \times (0.4)^2 = \;3.23.2 m

Did you know?

The Sierpiński triangle is built by repeatedly removing the central triangle from each remaining piece. The number of black triangles at stage nn is 3n3^n, while the shaded area shrinks as (34)n\left(\frac34\right)^n of the original: both are GPs, one growing without bound, the other shrinking towards zero.

An explicit rule lets you jump straight to any term; a recursive rule only lets you walk there one step at a time.

the single idea to carry out of this chapter

Check yourself before the exam
  • Can I tell the difference between an explicit rule and a recursive rule, and use each one?
  • Can I find any term of an AP using tn=a+(n1)dt_n = a+(n-1)d, and identify aa and dd?
  • Can I find the sum of the first nn natural numbers, and use it to sum a range of numbers?
  • Can I find any term of a GP using tn=arn1t_n = ar^{n-1}, and identify aa and rr?
Quick Revision: read this the night before the exam
  • Explicit rule: tnt_n from nn directly. Recursive rule: tnt_n from tn1t_{n-1}
  • AP: constant common difference dd; tn=a+(n1)dt_n = a+(n-1)d; points plot on a straight line
  • Sn=1+2++n=n(n+1)2S_n = 1+2+\cdots+n = \dfrac{n(n+1)}{2} (Gauss’s pairing method)
  • GP: constant common ratio rr; tn=arn1t_n = ar^{n-1}; points curve away, not a straight line
  • Virahānka-Fibonacci sequence: tn=tn1+tn2t_n = t_{n-1}+t_{n-2}, first recorded 7th century CE
Practice Questions
  1. 1 markA sequence has explicit rule tn=4n1t_n = 4n-1. Find the first term and the 5th term.
  2. 2 marksFor the sequence tn=3n2t_n = 3n-2, which term of the sequence is 76?
  3. 2 marksA sequence is given by the recursive rule u1=2u_1=2, un=3un11u_n = 3u_{n-1}-1 for n2n \ge 2. Find the first four terms.
  4. 2 marksFind the 15th term of the AP 7, 11, 15, 19, …
  5. 2 marksWhich term of the AP 100, 93, 86, … is 2?
  6. 3 marksFind the sum of the first 40 natural numbers. Hence find the sum of the numbers from 41 to 60.
  7. 2 marksHow many 2-digit numbers are divisible by 4? Find their sum.
  8. 2 marksShow that 2, 6, 18, 54, … is a GP, and find its 6th term.
  9. 3 marksIn a GP, the 3rd term is 12 and the 6th term is 96. Find the common ratio and the first term.
  10. 3 marksA ball is dropped from a height of 50 m and bounces back to 40% of its previous height each time. Find the height it reaches after the 3rd bounce, and write the explicit formula for the height after the nnth bounce.
Multiple Choice
  1. 1 markThe common difference of the AP 5, 2, −1, −4, … is:
    (a) 3(b) −3(c) 2(d) −2
  2. 1 markThe nnth term of a GP with first term 3 and common ratio 2 is:
    (a) 3+2n3+2n(b) 3×2n13 \times 2^{n-1}(c) 3×2n3 \times 2^n(d) 2×3n12 \times 3^{n-1}
  3. 1 markWhich of these is neither an AP nor a GP?
    (a) 2, 4, 6, 8(b) 3, 9, 27, 81(c) 1, 4, 9, 16(d) 5, 5, 5, 5
Assertion (A): The sequence 2, 6, 18, 54, … is a geometric progression with common ratio 3.
Reason (R): In a GP, the ratio of any term to its immediately preceding term is always constant.
Case Study
A company offers a starting annual salary of ₹4,00,000 with a fixed annual increment of ₹25,000 every year.
  1. 1 markWhat is the salary in the 4th year?
  2. 1 markIn which year does the salary first reach ₹6,00,000?
  3. 2 marksFind the total salary earned over the first 5 years.
Answer Key
Q1t1=3t_1=3, t5=19t_5=19
Q23n2=76n=263n-2=76 \Rightarrow n=26th term
Q32,5,14,412, 5, 14, 41
Q4a=7,d=4a=7,d=4: t15=7+14(4)=63t_{15}=7+14(4)=63
Q5a=100,d=7a=100,d=-7: 100+(n1)(7)=2n=15100+(n-1)(-7)=2 \Rightarrow n=15
Q6S40=820S_{40}=820; S60S40=1830820=1010S_{60}-S_{40}=1830-820=1010
Q712 to 96, step 4: 22 numbers; sum =22×12+962=1188=22 \times \frac{12+96}{2}=1188
Q8Ratio constant =3=3; t6=2×35=486t_6=2 \times 3^5=486
Q9r3=8r=2r^3=8 \Rightarrow r=2; a=12/4=3a=12/4=3
Q10a=20,r=0.4a=20,r=0.4: t3=20(0.4)2=3.2t_3=20(0.4)^2=3.2 m; tn=20(0.4)n1t_n=20(0.4)^{n-1}
MCQ 1–3(b) · (b) · (c)
A/RBoth A and R are true, and R is the correct explanation of A
Case Study₹4,75,000 · 9th year · ₹22,50,000
Read this chapter in:English Mediumहिंदी माध्यम