Predicting What Comes Next: Exploring Sequences and Progressions
Why This Matters
Look around you. Patterns are everywhere.
The seats in a cinema hall grow by a fixed number in each new row. Your savings grow by a fixed amount every month if you put aside the same pocket money. A taxi fare goes up by the same rupees for every extra kilometre. Even the months of the year repeat in a pattern.
Our brains love patterns. The moment we spot one, we can predict what comes next. If a row of tiles goes 2, 5, 8, 11, …, you already feel the next number should be 14. You did not check anything. You just sensed the rhythm.
This chapter turns that feeling into a tool. We will look at lists of numbers that follow a rule, called sequences. We will find neat formulas that let us jump straight to the 100th number — or the 1000th — without writing out all the ones before it. And we will meet a special, very common kind of sequence called an arithmetic progression, the workhorse behind salaries, savings, fares and seating.
By the end, you will not just guess what comes next. You will be able to prove it, for any position you like.
The Big Idea
The Big Idea: A sequence is just an ordered list of numbers that follows a rule. Once you find the rule, you can predict any term you want. The most powerful rules are explicit formulas — they take a position number n and hand you that term directly, with no need to know the terms before it. For a list that grows by a fixed step, that formula is short and beautiful, and a clever trick even lets us add up a whole list in one line.
Let’s Break It Down
We will build this up in steps. First, what a sequence is and how we name its terms. Then two ways to describe a sequence — an explicit rule and a recursive rule. Then the star of the chapter, the arithmetic progression (AP), with its nth-term formula. Then a famous summing trick that adds 1 + 2 + … + n in one move. Finally, a cousin of the AP called the geometric progression (GP).
Let us start with some sequences you have already met in earlier classes.
What Is a Sequence?
You have seen these lists before:
- Natural numbers: 1, 2, 3, 4, 5, 6, …
- Odd numbers: 1, 3, 5, 7, 9, 11, …
- Triangular numbers: 1, 3, 6, 10, 15, 21, …
- Square numbers: 1, 4, 9, 16, 25, 36, …
The three dots … mean the list keeps going forever.
A sequence is an ordered list of numbers. Each number in the list is called a term.
The word ordered matters. In a sequence, position is everything. In the square numbers, 1 is the first term, 4 is the second term, and 25 is the fifth term. Swapping them would make a different sequence.
A sequence can be finite (it stops) or infinite (it never stops). The four lists above are infinite. But the list 6, 12, 24, 48, 96 is finite — it has exactly five terms and then it ends. The days of one week, or the overs in one cricket innings, are finite sequences from daily life.
Triangular numbers: a picture of the pattern
Let us look closely at the triangular numbers: 1, 3, 6, 10, 15, …
Why “triangular”? Because each one can be drawn as a triangle of dots. And there is a lovely pattern hiding inside. Watch:
- 1 = 1
- 3 = 1 + 2
- 6 = 1 + 2 + 3
- 10 = 1 + 2 + 3 + 4
- 15 = 1 + 2 + 3 + 4 + 5
So the nth triangular number is just the sum of the first n natural numbers. The picture below makes this obvious.
Notice the differences between consecutive terms: from 1 to 3 is +2, from 3 to 6 is +3, from 6 to 10 is +4, from 10 to 15 is +5. The jumps themselves grow. So the triangular numbers do not grow by a fixed step. Keep that in mind — it will matter soon.
Square numbers: hidden odd numbers
Now the square numbers: 1, 4, 9, 16, 25, 36, …
Their consecutive differences are 3, 5, 7, 9, 11 — all the odd numbers! And just like before, each square is a running sum:
- 1 = 1
- 4 = 1 + 3
- 9 = 1 + 3 + 5
- 16 = 1 + 3 + 5 + 7
- 25 = 1 + 3 + 5 + 7 + 9
So every square number is the sum of the odd numbers up to that point. This is not a coincidence. The picture below shows exactly why.
Naming the terms
Writing “the fourth term” again and again is clumsy. So we use a short notation. We write t₁ for the first term, t₂ for the second term, t₃ for the third, and in general tₙ for the term in position n.
The little number below — the subscript — is the position. So for the odd numbers, t₁ = 1, t₂ = 3, t₃ = 5, t₄ = 7. Reading t₄ = 7 out loud: “the term in the 4th position is 7.”
If we ever talk about two sequences at once, we use different letters: t₁, t₂, t₃, … for one, s₁, s₂, s₃, … for another, u₁, u₂, u₃, … for a third.
One careful point. The position n is always a counting number (1, 2, 3, …). But a term itself can be anything — a fraction, a negative number, any real number. For example the sequence –7, –3, 1, 5, 9, … has s₁ = –7, and each term is 4 more than the one before. The terms go negative, but the positions stay 1, 2, 3, ….
In the sequence 1, 1/2, 1/3, 1/4, …, what is t₃, and is this sequence increasing or decreasing?
t₃ = 1/3 (the third term). The terms are getting smaller and smaller, so the sequence is decreasing. Notice the positions n still go 1, 2, 3, 4 even though the terms shrink.
Two Ways to Describe a Sequence
There are two main ways to write down the rule for a sequence. They feel very different, so it is worth seeing both clearly.
The explicit rule (jump straight to any term)
An explicit rule gives the nth term directly from its position n. You plug in n and out comes the term — no need to know any other term.
Take the rule uₙ = 2n – 1. Substitute positions one by one:
- u₁ = 2 × 1 – 1 = 1
- u₂ = 2 × 2 – 1 = 3
- u₃ = 2 × 3 – 1 = 5
These are the odd numbers. So uₙ = 2n – 1 is the explicit rule for the odd-number sequence.
Why is this so useful? Because you can leap straight to any term. Want the 300th odd number? Just compute u₃₀₀ = 2 × 300 – 1 = 599. You do not need the 299 terms before it.
The explicit rule also lets us check if a number belongs to a sequence, and find its position. Is 137 an odd number, and if so, which one? Solve 2n – 1 = 137. That gives 2n = 138, so n = 69. Since 69 is a whole number, 137 is indeed the 69th term.
This relies on solving a simple equation, which you met in earlier classes. Here is a quick refresher.
Let us put that to work on a fuller example.
A sequence has the explicit rule sₙ = 5n – 2. (a) Find the first three terms. (b) Is 308 a term? (c) Is 471 a term?
- For the first three terms, substitute n = 1, 2, 3. s₁ = 5×1 – 2 = 3, s₂ = 5×2 – 2 = 8, s₃ = 5×3 – 2 = 13. So the sequence starts 3, 8, 13, …
- To check 308, solve 5n – 2 = 308. Add 2 to both sides: 5n = 310. Divide by 5: n = 62.
- Since 62 is a counting number, 308 IS a term — it is the 62nd term.
- To check 471, solve 5n – 2 = 471. Add 2: 5n = 473. Divide by 5: n = 94.6.
- Since 94.6 is not a counting number, there is no 94.6th position. So 471 is NOT a term of this sequence. Final answers: first three terms are 3, 8, 13; 308 is the 62nd term; 471 is not a term.
The recursive rule (build each term from the one before)
The second way is a recursive rule. It tells you the first term, then a rule to get each new term from the term(s) before it.
Take the sequence 1, 4, 7, 10, 13, …. Each term is 3 more than the previous one. So:
- t₂ = t₁ + 3
- t₃ = t₂ + 3
- t₄ = t₃ + 3
In general, tₙ = tₙ₋₁ + 3. Together with the starting value t₁ = 1, this completely describes the sequence. (Here tₙ₋₁ just means “the term one place before tₙ”.)
The recursive rule has a cost. To find the 100th term, you must climb up through all 99 earlier terms one by one. With an explicit rule you could skip straight there. But the recursive rule is often the most natural way to describe a pattern, because it captures exactly how the pattern grows. Both descriptions are useful; they are two views of the same sequence.
Let us see a recursive rule that is harder to turn into an explicit one.
Find the first four terms of the sequence given by the recursive rule u₁ = 1, uₙ = 2uₙ₋₁ + 3 for n ≥ 2.
- We are told u₁ = 1. To get each next term, double the previous term and add 3.
- u₂ = 2 × u₁ + 3 = 2 × 1 + 3 = 5.
- u₃ = 2 × u₂ + 3 = 2 × 5 + 3 = 13.
- u₄ = 2 × u₃ + 3 = 2 × 13 + 3 = 29. So the first four terms are 1, 5, 13, 29.
A recursive rule does not have to use only the previous term. It can use the previous two terms. The most famous example starts with two given terms and adds them to make the next:
V₁ = 1, V₂ = 2, and Vₙ = Vₙ₋₁ + Vₙ₋₂ for n ≥ 3.
Working it out: V₃ = 2 + 1 = 3, V₄ = 3 + 2 = 5, V₅ = 5 + 3 = 8. This gives 1, 2, 3, 5, 8, 13, 21, 34, … — the Virahānka–Fibonacci sequence. It was written down and studied by the Indian scholar Virahānka in the 7th century CE, while studying the rhythms of Prakrit poetry, long before the Italian Fibonacci met it around 1200 CE. It shows up all over nature and mathematics.
Using V₁ = 1, V₂ = 2, Vₙ = Vₙ₋₁ + Vₙ₋₂, what are the next two terms after 1, 2, 3, 5, 8, 13, 21, 34?
Add the last two each time: 21 + 34 = 55, then 34 + 55 = 89. So the next two terms are 55 and 89.
Arithmetic Progressions (AP)
Now we meet the most useful special kind of sequence.
Look at the growing pattern of squares in Figure 8.3. Counting the tiny squares at each stage gives 1, 5, 9, 13, ….
Look at how the count is built: 1, then 1 + 4, then 1 + 4 + 4, then 1 + 4 + 4 + 4. We can rewrite this neatly:
1, 1 + 1 × 4, 1 + 2 × 4, 1 + 3 × 4, …
So the number of squares always jumps by the same fixed amount, 4. A sequence where the difference between consecutive terms is constant has a special name.
An arithmetic progression (AP) is a sequence in which each term after the first is found by adding a fixed number d to the previous term. The fixed number d is called the common difference.
Let us name the parts. The first term is called a. The common difference is d (the constant step). For the pattern above, a = 1 and d = 4.
The common difference can be negative too. In 11, 7, 3, –1, –5, …, each term is 4 less than the one before. This is still an AP — here a = 11 and d = –4. A negative d simply means the sequence goes down by a fixed step.
So the general AP looks like this:
a, a + d, a + 2d, a + 3d, …
Deriving the nth-term formula
Now the big payoff. We want a formula for the nth term of any AP, so we can jump straight to the 50th or 500th term.
Look again at the general AP. The first term is a. To reach the second term we add d once. To reach the third term we add d twice. To reach the fourth term, three times. Do you see the pattern? To reach the nth term, we add d exactly (n – 1) times — one time fewer than n. The picture below shows why.
So we can write the nth-term formula:
tₙ = a + (n – 1) × d
where a is the first term, d is the common difference, and n is the position. This is the explicit rule for any AP. Memorise this one — you will use it constantly.
Let us check it on our pattern. For 1, 5, 9, 13 we had a = 1, d = 4. So tₙ = 1 + (n – 1) × 4 = 1 + 4n – 4 = 4n – 3. Test it: t₃ = 4 × 3 – 3 = 9. Correct.
The recursive rule for the same AP is short and natural too:
t₁ = a
tₙ = tₙ₋₁ + d for n ≥ 2
In words: start at a, then keep adding d.
Let us use the formula on a real problem.
Find the 10th and 26th terms of the AP: 3, 8, 13, 18, …
- First spot a and d. The first term is a = 3. The common difference is d = 8 – 3 = 5 (check: 13 – 8 = 5, yes).
- Use tₙ = a + (n − 1) × d. For the 10th term, n = 10: t₁₀ = 3 + (10 − 1) × 5 = 3 + 9 × 5 = 3 + 45 = 48.
- For the 26th term, n = 26: t₂₆ = 3 + (26 − 1) × 5 = 3 + 25 × 5 = 3 + 125 = 128. So the 10th term is 48 and the 26th term is 128.
The formula also works backwards — to find which position a number sits in.
Which term of the AP 21, 18, 15, … is −81? Is 0 a term of this AP?
- Find a and d. Here a = 21 and d = 18 − 21 = −3 (the AP is going down).
- For −81, set tₙ = −81: 21 + (n − 1)(−3) = −81. Subtract 21 from both sides: (n − 1)(−3) = −102.
- Divide both sides by −3: n − 1 = 34. So n = 35. Since 35 is a counting number, −81 IS the 35th term.
- For 0, set tₙ = 0: 21 + (n − 1)(−3) = 0, so (n − 1)(−3) = −21, giving n − 1 = 7, so n = 8.
- Since 8 is a counting number, 0 IS a term — it is the 8th term. (If n had come out as a fraction, 0 would not have been a term.) Final answers: −81 is the 35th term; 0 is the 8th term.
Why an AP makes a straight line
Here is a beautiful fact. If we plot an AP — putting the position n on the x-axis and the term value on the y-axis — the points land exactly on a straight line.
Why? Because each time n goes up by 1, the value goes up by the same fixed d. Equal steps across, equal steps up. That is precisely what a straight line is. Figure 8.5 shows this for our 1, 5, 9, 13, 17 sequence.
Is the sequence 2, 5, 8, 11, … an AP? If so, what are a and d, and what is its nth term?
Yes. Each step adds 3, so the difference is constant. Here a = 2 and d = 3. The nth term is tₙ = 2 + (n − 1) × 3 = 2 + 3n − 3 = 3n − 1.
An AP from everyday life
APs are everywhere once you look. Here is a taxi fare.
A taxi charges a fixed booking fee of ₹200 plus ₹40 per kilometre. Write the total fare after 1 km, 2 km, 3 km as a sequence. What is the fare after 10 km?
- After 1 km: ₹200 + ₹40 = ₹240. After 2 km: ₹200 + ₹80 = ₹280. After 3 km: ₹200 + ₹120 = ₹320. So the sequence is 240, 280, 320, …
- This is an AP with first term a = 240 and common difference d = 40 (each extra km adds ₹40).
- For 10 km we want the 10th term: t₁₀ = 240 + (10 − 1) × 40 = 240 + 9 × 40 = 240 + 360 = 600. So the fare after 10 km is ₹600.
The Sum of the First n Natural Numbers
Now a different but related question. How do we add up a long list quickly?
Try this: what is 1 + 2 + 3 + … + 100? Adding one at a time would take ages. There is a famous trick, said to have been used by the young mathematician Gauss. It is wonderfully simple.
Gauss’s pairing trick
Let S stand for the sum we want. Write it out, and then write it again backwards underneath:
S = 1 + 2 + 3 + 4 + 5 + 6
S = 6 + 5 + 4 + 3 + 2 + 1
Now add the two lines column by column. Look at each column: 1 + 6 = 7, 2 + 5 = 7, 3 + 4 = 7, and so on. Every column adds to the same number, 7! Figure 8.6 shows this clearly.
We have six columns, each adding to 7. So adding the two copies of S together gives:
2S = 6 × 7 = 42
S = 42 ÷ 2 = 21
And indeed 1 + 2 + 3 + 4 + 5 + 6 = 21. The trick worked.
The general formula
The same idea works for any n. Write the sum forwards and backwards:
S = 1 + 2 + … + n
S = n + (n − 1) + … + 1
Each of the n columns adds to (n + 1). So 2S = n(n + 1), which gives:
Sₙ = n(n + 1) / 2
This is the formula for the sum of the first n natural numbers. The earliest known written statement of this result is in Āryabhaṭa’s Āryabhaṭīya (Chapter 2, Verse 19), from the 5th century CE.
Let us answer the original question with it. For 1 + 2 + … + 100, take n = 100: S₁₀₀ = 100 × 101 / 2 = 10100 / 2 = 5050. One line, done.
Notice something neat: this is exactly the formula for the triangular numbers from Figure 8.1, because the nth triangular number is the sum 1 + 2 + … + n. So tₙ = n(n + 1) / 2 gives you triangular numbers too.
A child arranges marbles in rows: 1 marble in the first row, 2 in the second, 3 in the third, and so on up to 25 rows. How many marbles in all?
- The total is 1 + 2 + 3 + … + 25, the sum of the first 25 natural numbers.
- Use Sₙ = n(n + 1) / 2 with n = 25: S₂₅ = 25 × 26 / 2.
- Compute: 25 × 26 = 650, then 650 ÷ 2 = 325. So the child uses 325 marbles in all.
The formula even lets us add up a partial run, like 25 + 26 + … + 58. The trick: take the whole sum up to 58 and subtract the part you do not want (up to 24).
Find 25 + 26 + 27 + … + 58 using the sum formula.
- Write it as (1 + 2 + … + 58) − (1 + 2 + … + 24). That removes the unwanted start and leaves 25 to 58.
- That is S₅₈ − S₂₄. Compute S₅₈ = 58 × 59 / 2 = 3422 / 2 = 1711.
- Compute S₂₄ = 24 × 25 / 2 = 600 / 2 = 300.
- Subtract: 1711 − 300 = 1411. So 25 + 26 + … + 58 = 1411.
Geometric Progressions (GP)
There is one more special sequence worth meeting. In an AP we add the same number each time. In a geometric progression, we multiply by the same number each time.
Look at another growing pattern of squares (Figure 8.6 in your textbook): the green-square counts go 3, 6, 12, 24. Each stage doubles the one before. So:
3, 3 × 2, 3 × 4, 3 × 8, … which is 3, 3 × 2, 3 × 2², 3 × 2³, …
A geometric progression (GP) is a sequence in which each term after the first is found by multiplying the previous term by a fixed number. That fixed number is called the common ratio, written r.
For 3, 6, 12, 24, the common ratio is r = 2, because 6 ÷ 3 = 2, 12 ÷ 6 = 2, 24 ÷ 12 = 2 — the ratio of any term to the one before is always 2.
The general GP looks like this:
a, ar, ar², ar³, …
and the nth term is:
tₙ = a × rⁿ⁻¹
(The power is n − 1 for the same reason as in an AP: to reach the nth term you multiply by r one time fewer than n.)
A GP grows much faster than an AP. And unlike an AP, its plotted points do not lie on a straight line — they curve upward steeply. Figure 8.7 puts the two side by side.
Let us check whether a given sequence is a GP.
Is the sequence 2, 10, 50, 250, … a geometric progression? If so, find its common ratio and its nth term.
- For a GP, the ratio of each term to the previous one must be the same. Check: 10 ÷ 2 = 5, 50 ÷ 10 = 5, 250 ÷ 50 = 5.
- All ratios equal 5, so yes it is a GP with first term a = 2 and common ratio r = 5.
- Use tₙ = a × rⁿ⁻¹: tₙ = 2 × 5ⁿ⁻¹. (Check: t₃ = 2 × 5² = 2 × 25 = 50, correct.) So it is a GP, r = 5, and tₙ = 2 × 5ⁿ⁻¹.
GPs appear in many natural patterns — for example fractals like the Sierpiński triangle, where the number of small triangles triples at each stage (1, 3, 9, 27, …, a GP with r = 3). We will explore these more in later grades.
Common Mistakes
Even when the idea is clear, a few traps catch students often. Here are the big ones.
To find the nth term of an AP, multiply the common difference d by n: tₙ = a + n × d.
It feels right because the nth term should involve n directly, and 'n steps of d' sounds like the natural count of how far you have moved.
You add d only (n − 1) times, not n times, because the first term needs zero jumps. The correct formula is tₙ = a + (n − 1) × d. Count the gaps between terms, not the terms.
Any sequence where the numbers keep growing must be an arithmetic progression.
Growing lists look orderly, and once a list rises step by step it is tempting to assume the steps are all equal.
An AP needs a CONSTANT difference between consecutive terms. The triangular numbers 1, 3, 6, 10 grow, but their differences are 2, 3, 4 — not constant — so they are not an AP. Always subtract consecutive terms and check the difference is the same.
If solving tₙ = (some number) gives n = 94.6, then that number is the 94.6th term of the sequence.
The algebra runs smoothly and produces a clean value of n, so it feels like a valid answer to report.
A position must be a counting number (1, 2, 3, …); there is no 94.6th term. A fractional or decimal n means the number is NOT a term of the sequence at all.
An explicit rule and a recursive rule are basically the same thing written differently, so either lets you jump straight to the 100th term.
Both describe the same sequence and give the same terms, so they seem interchangeable.
An explicit rule (like tₙ = 3n − 2) gives any term directly from n. A recursive rule (like tₙ = tₙ₋₁ + 3) needs the previous term first, so to reach the 100th term you must build all 99 terms before it.
In a GP you find the next term by adding the common ratio, just like you add the common difference in an AP.
The two ideas sit side by side and both have a 'common' something, so the same 'add it on' action gets applied to both.
In a GP you MULTIPLY by the common ratio r, you do not add it. The AP adds a fixed amount; the GP multiplies by a fixed amount. That is exactly what makes a GP grow so much faster.
Quick Check
Test yourself before moving to practice.
What is the 12th term of the AP 7, 11, 15, 19, …?
Which of these sequences is a geometric progression (GP)?
What is the sum 1 + 2 + 3 + … + 50?
Practice Problems
Try each one yourself first, then reveal the full solution.
Easy
Find the first five terms of the sequence whose nth term is tₙ = 3n − 4.
Substitute n = 1, 2, 3, 4, 5 into tₙ = 3n − 4:
- t₁ = 3 × 1 − 4 = −1
- t₂ = 3 × 2 − 4 = 2
- t₃ = 3 × 3 − 4 = 5
- t₄ = 3 × 4 − 4 = 8
- t₅ = 3 × 5 − 4 = 11
So the first five terms are −1, 2, 5, 8, 11. (Notice they form an AP with common difference 3.)
Find the 10th and 15th terms of the AP given by tₙ = 5n − 3.
Just substitute the positions:
- 10th term: t₁₀ = 5 × 10 − 3 = 50 − 3 = 47
- 15th term: t₁₅ = 5 × 15 − 3 = 75 − 3 = 72
Determine whether 97 and 172 are terms of the sequence tₙ = 5n − 3.
For each number, set it equal to 5n − 3 and solve for n. Remember n must be a counting number.
For 97: 5n − 3 = 97, so 5n = 100, so n = 20. Since 20 is a counting number, 97 is a term (the 20th term).
For 172: 5n − 3 = 172, so 5n = 175, so n = 35. Since 35 is a counting number, 172 is a term (the 35th term).
Medium
Find the nth term of the AP 11, 8, 5, 2, … and write its recursive rule.
First find a and d. The first term is a = 11. The common difference is d = 8 − 11 = −3 (the AP decreases).
Explicit (nth-term) rule: tₙ = a + (n − 1) × d = 11 + (n − 1)(−3) = 11 − 3n + 3 = 14 − 3n.
Check: t₃ = 14 − 3 × 3 = 14 − 9 = 5. Correct.
Recursive rule: start at 11, then subtract 3 each time:
t₁ = 11, tₙ = tₙ₋₁ − 3 for n ≥ 2.
How many 2-digit numbers are divisible by 3? What is their sum?
The 2-digit multiples of 3 are 12, 15, 18, …, 99. This is an AP with a = 12 and d = 3.
How many terms? Use the last term: tₙ = 99. So 12 + (n − 1) × 3 = 99. Then (n − 1) × 3 = 87, so n − 1 = 29, so n = 30. There are 30 such numbers.
Their sum by the pairing idea: pair the first and last terms. Each first-and-last pair (12 + 99 = 111) repeats, and there are 30 terms, so 15 pairs each summing to 111.
Sum = 15 × 111 = 1665.
(This is the AP version of Gauss’s trick: sum = (number of terms) × (first + last) ÷ 2 = 30 × 111 ÷ 2 = 1665.)
Harish starts at an annual salary of ₹5,00,000 and gets a raise of ₹20,000 each year. After how many years does his salary reach ₹7,00,000?
The yearly salaries form an AP with a = 5,00,000 (first year) and d = 20,000.
We want the year when the salary is ₹7,00,000. Set tₙ = 7,00,000:
5,00,000 + (n − 1) × 20,000 = 7,00,000.
Subtract 5,00,000: (n − 1) × 20,000 = 2,00,000.
Divide by 20,000: n − 1 = 10, so n = 11.
So in the 11th year his salary reaches ₹7,00,000 — that is, after 10 years of increments.
Challenge
An AP has 50 terms. Its 3rd term is 12 and its last (50th) term is 106. Find its 29th term.
Let the first term be a and the common difference be d.
From the 3rd term: a + 2d = 12.
From the 50th term: a + 49d = 106.
Subtract the first equation from the second to remove a:
(a + 49d) − (a + 2d) = 106 − 12, which gives 47d = 94, so d = 2.
Put d = 2 back into a + 2d = 12: a + 4 = 12, so a = 8.
Now the 29th term: t₂₉ = a + (29 − 1) × d = 8 + 28 × 2 = 8 + 56 = 64.
Find the 31st term of an AP whose 11th term is 38 and whose 16th term is 73.
Let the first term be a and the common difference d.
11th term: a + 10d = 38.
16th term: a + 15d = 73.
Subtract: (a + 15d) − (a + 10d) = 73 − 38, so 5d = 35, giving d = 7.
Put d = 7 into a + 10d = 38: a + 70 = 38, so a = −32.
Now the 31st term: t₃₁ = a + (31 − 1) × d = −32 + 30 × 7 = −32 + 210 = 178.
The number of bacteria in a culture doubles every hour. If there are 30 bacteria at the start, how many are there at the end of the 2nd hour, the 4th hour, and the nth hour?
Doubling each hour makes this a GP, not an AP. The starting count (hour 0) is a = 30 and the common ratio is r = 2.
Count after each hour: 30, 60, 120, 240, …. The count after n hours is 30 × 2ⁿ (n doublings from the start).
- End of 2nd hour: 30 × 2² = 30 × 4 = 120.
- End of 4th hour: 30 × 2⁴ = 30 × 16 = 480.
- End of nth hour: 30 × 2ⁿ.
This shows how fast a GP grows — by the 4th hour the bacteria have already multiplied 16-fold.
Summary
After working through this chapter, you can now explain:
- What a sequence is — an ordered list of numbers, each one a term — and how to name terms with the notation t₁, t₂, …, tₙ.
- The difference between an explicit rule (gives any term straight from its position n) and a recursive rule (builds each term from earlier terms), and when each is handy.
- What an arithmetic progression (AP) is — a sequence with a constant common difference d — and how to spot one by checking that consecutive differences are equal.
- Why the nth term of an AP is tₙ = a + (n − 1) × d, including why it is (n − 1) and not n: you count the jumps between terms, not the terms themselves.
- How to use Gauss’s pairing trick to show Sₙ = n(n + 1) / 2 for the sum of the first n natural numbers, and to add partial runs of numbers.
- What a geometric progression (GP) is — a sequence with a constant common ratio r, where you multiply instead of add — and its nth term tₙ = a × rⁿ⁻¹, and why a GP curves up while an AP makes a straight line.
What’s Next
That completes Part I of Ganita Manjari. Part II continues the journey, with more geometry, more algebra, and ways to handle and read data. The sequences and progressions you just learned will return again and again — in growth problems, in patterns, and later in deeper ideas about series. For now, head back to Class 9 Maths — Part I to revisit any chapter and lock in what you have learned.
Frequently Asked Questions
What is an arithmetic progression in simple words?
An arithmetic progression, or AP, is a list of numbers where you add the same fixed number to get from one term to the next. That fixed number is called the common difference, written d. For example 3, 8, 13, 18 is an AP because you add 5 each time, so d is 5.
How do you find the nth term of an AP?
Use the formula tₙ = a + (n − 1) × d, where a is the first term, d is the common difference and n is the position. The (n − 1) is there because from the first term to the nth term you take the jump d one time fewer than n. So the 10th term of 3, 8, 13 is 3 + 9 × 5 = 48.
Why is there an (n minus 1) in the AP formula and not just n?
Because the first term needs zero jumps, not one. To reach the 1st term you start at a and jump 0 times. To reach the 2nd term you jump once, to reach the 5th term you jump 4 times. So the number of jumps is always one less than the position, which is (n − 1).
How did Gauss add 1 to 100 so fast?
He wrote the sum forwards and again backwards, then added the two lines column by column. Each column gave the same total, 101, and there were 100 columns, so twice the sum was 100 × 101. Halving that gives 5050. The general rule is Sₙ = n(n + 1) / 2.
What is the difference between an explicit rule and a recursive rule?
An explicit rule gives a term straight from its position n, like tₙ = 3n − 2, so you can jump to the 100th term without knowing any other term. A recursive rule builds each term from the term before it, like t₁ = 1 and tₙ = tₙ₋₁ + 3, so you must know earlier terms first.
How is a geometric progression different from an arithmetic progression?
In an AP you add the same number each time, so the values rise in a straight line. In a GP you multiply by the same number each time, called the common ratio r, so the values grow much faster and curve upward. For example 3, 6, 12, 24 is a GP with r = 2.