Arithmetic Progressions

Chapter 5 · Mathematics · Class 10 32 min read

Why This Matters

Patterns that grow by a fixed step are everywhere. Reena starts a job at ₹8000 a month and gets a ₹500 raise every year — 8000, 8500, 9000, … . The rungs of a ladder shorten by 2 cm each step up — 45, 43, 41, 39, … . Shakila drops ₹100 in a money box on her daughter’s first birthday and ₹50 more each year — 100, 150, 200, 250, … .

In every one of these, you could of course just keep adding the fixed amount over and over. But what if someone asks: what’s the salary in the 25th year? Or how much money is in the box by the 21st birthday? Adding 24 or 21 times by hand is slow and error-prone.

This chapter gives you two shortcuts that turn that grind into a single calculation: a formula for the nth term (jump straight to any term without listing the earlier ones) and a formula for the sum of the first n terms (add up a whole list in one line). And you won’t just memorise them — you’ll see exactly why each one is true, including the beautiful trick a 10-year-old Gauss used to add 1 + 2 + ⋯ + 100 in seconds.

The Big Idea

An arithmetic progression (AP) is a list of numbers where each term is the previous one plus a fixed number d, called the common difference. Knowing just two things — the first term a and that step d — lets you write the whole list: a, a + d, a + 2d, a + 3d, … . From this you can pin down any term directly with aₙ = a + (n − 1)d, and add the first n of them in one shot with Sₙ = n/2 [2a + (n − 1)d], which is the same as n/2 (a + l) when you know the last term l.

Let’s Break It Down

What an AP is, and how to spot one

A list of numbers is an arithmetic progression if you get each term by adding the same fixed number to the one before it (the first term has nothing before it, so it just starts the list). That fixed number is the common difference, written d. It can be positive (the list grows), negative (the list shrinks), or zero (every term is the same).

We name the terms a₁, a₂, a₃, …, aₙ, so the AP is a₁, a₂, a₃, …, aₙ. Because each term is the previous one plus d:

a₂ − a₁ = a₃ − a₂ = ⋯ = aₙ − aₙ₋₁ = d

So to test a list, subtract each term from the one that follows it. If you always get the same number, it’s an AP — and that number is d. One catch: always subtract the earlier term from the later one (aₖ₊₁ − aₖ), even when the later term is smaller (then d just comes out negative).

A number line showing the AP 3, 7, 11, 15, 19 with equal steps. Each gap is marked plus 4, and below each term is written in general form a, a + d, a + 2d, a + 3d, a + 4d.
An AP marches in equal steps of d. The terms 3, 7, 11, 15, 19 step by +4, so d = 4. In general form they are a, a + d, a + 2d, … — which leads to aₙ = a + (n − 1)d.

If you know a and d, the AP is fixed — you can list it out. The form a, a + d, a + 2d, a + 3d, … is called the general form of an AP. An AP with a last term (like 45, 43, …, 31) is finite; one that keeps going (like 1, 2, 3, …) is infinite.

Is it an AP? Find a and d

For each list, say whether it is an AP. If it is, give a, d and the next two terms: (i) 4, 10, 16, 22, … (ii) 1, −1, −3, −5, … (iii) −2, 2, −2, 2, …

Concept check

Is 1, 1, 2, 3, 5, 8, … (the Fibonacci list) an arithmetic progression?

Deriving the nth term: aₙ = a + (n − 1)d

Suppose we want Reena’s salary in the 25th year without writing out all 25. Watch the pattern build from the first term a, adding d each step:

  • a₁ = a (the 1st term — we’ve added d zero times)
  • a₂ = a + d = a + (2 − 1)d (added d once)
  • a₃ = a₂ + d = a + 2d = a + (3 − 1)d (added d twice)
  • a₄ = a₃ + d = a + 3d = a + (4 − 1)d (added d three times)

The pattern is unmistakable: to reach the nth term you start at a and add d a total of (n − 1) times — one fewer than n, because the first term needed no addition. So:

aₙ = a + (n − 1)d

This is the nth term (or general term) of the AP. If the AP has a last term, it’s often called l, so l = a + (n − 1)d for the final term.

Finding a specific term

Find the 10th term of the AP 2, 7, 12, …

Which term equals a given value?

Which term of the AP 21, 18, 15, … is −81? Is any term equal to 0?

When you’re given two terms instead of a and d, you get two equations — solve them as a pair (just like Chapter 3).

Two terms given — find the AP

The 3rd term of an AP is 5 and the 7th term is 9. Find the AP.

You can also check whether a particular number even belongs to an AP: solve for n, and if n turns out not to be a positive whole number, the number is not a term.

Is this number in the list?

Check whether 301 is a term of 5, 11, 17, 23, …

Deriving the sum: Sₙ = n/2 [2a + (n − 1)d] = n/2 (a + l)

Now the big payoff: adding the first n terms without slogging through them one at a time. Let Sₙ (or just S) be that sum:

S = a + (a + d) + (a + 2d) + ⋯ + [a + (n − 1)d] … (1)

Here’s the trick young Gauss used to add 1 + 2 + ⋯ + 100. Write the same sum again, but in reverse order (the last term first, ending with a):

S = [a + (n − 1)d] + [a + (n − 2)d] + ⋯ + (a + d) + a … (2)

Now add (1) and (2) column by column. Look at any single column: the term from (1) is going up by d as you move right, while the term from (2) is going down by d — so in every column the two pieces add to the same total, 2a + (n − 1)d. (Check the first column: a + [a + (n − 1)d] = 2a + (n − 1)d. The second: (a + d) + [a + (n − 2)d] = 2a + (n − 1)d. Same every time — the extra d on one side is cancelled by the missing d on the other.)

There are n columns, so:

2S = n × [2a + (n − 1)d]

Divide both sides by 2:

S = n/2 [2a + (n − 1)d]

That’s the sum of the first n terms. Now notice that 2a + (n − 1)d = a + [a + (n − 1)d] = a + (the nth term). So we can also write S = n/2 [a + aₙ]. When the AP has a last term l (so aₙ = l), this becomes the neat form:

S = n/2 (a + l)

Use n/2 (a + l) when you know the first and last terms (and not d); use n/2 [2a + (n − 1)d] when you know a, d and n.

The reverse-and-add proof. The sum S is written forwards as a, a+d, ..., l, then again backwards as l, l−d, ..., a. Each column adds to a+l, and with n columns this gives 2S = n(a+l), so S = n/2 (a+l) = n/2 [2a + (n−1)d].
Write the sum, write it again reversed beneath, then add. Every column totals (a + l), and there are n columns — so 2S = n(a + l). Halving gives the sum formula.
Sum from a, d and n

Find the sum of the first 22 terms of the AP 8, 3, −2, …

Gauss's own sum

Find the sum of the first n positive integers 1 + 2 + 3 + ⋯ + n.

How many terms give a target sum?

How many terms of the AP 24, 21, 18, … must be taken so that their sum is 78?

There’s also a handy link between the sum and the terms: the nth term equals the difference of consecutive sums, aₙ = Sₙ − Sₙ₋₁. (The first n terms minus the first (n − 1) terms leaves just the nth.) This lets you recover terms when you’re only told a formula for the sum.

Putting it together: word problems

Most “real life” AP problems boil down to: spot the AP, write down a and d (or a and l), then reach for the right formula.

A manufacturing problem

A TV maker produced 600 sets in the 3rd year and 700 in the 7th year, with production rising by a fixed number each year. Find (i) the 1st-year production, (ii) the 10th-year production, (iii) the total over the first 7 years.

Common Mistakes

⚠️ Common mistake
What students think

The nth term is a + nd — you add d once for every term.

Why it seems right

It feels natural that 'n terms' means 'add the step n times', and a + nd reads more simply than a + (n − 1)d.

What actually happens

It's a + (n − 1)d. The FIRST term needs no addition (it's just a), so to reach the nth term you add d only (n − 1) times. Test it: with a = 2, d = 5, the 1st term must be 2 — and a + (1 − 1)d = 2 ✓, while a + 1·d = 7 ✗.

⚠️ Common mistake
What students think

Common difference = (first term) − (second term), so for 6, 3, 0, … take d = 6 − 3 = 3.

Why it seems right

Subtracting the smaller number from the bigger one to keep d positive feels tidier.

What actually happens

Always do d = (later term) − (earlier term) = aₖ₊₁ − aₖ. For 6, 3, 0, … that's d = 3 − 6 = −3, a NEGATIVE common difference. Flipping the subtraction would describe a different, increasing list.

⚠️ Common mistake
What students think

If solving aₙ = (some value) gives n = 151/3 or n = 7.5, just round it to the nearest whole number.

Why it seems right

A number that's close to a whole number looks like it 'almost' fits, so rounding seems harmless.

What actually happens

n counts position in the list, so it must be a POSITIVE INTEGER. A fractional n means the value is simply NOT a term of the AP — there's nothing to round. Report that it isn't a term.

⚠️ Common mistake
What students think

To add the first n terms, you can use Sₙ = n/2 (a + l) even when you don't know the last term l.

Why it seems right

The (a + l) form looks shorter and quicker, so it's tempting to use it everywhere.

What actually happens

Use n/2 (a + l) only when l (the nth/last term) is known. If you only have a, d and n, use Sₙ = n/2 [2a + (n − 1)d] — or first compute l = a + (n − 1)d, then use the (a + l) form.

Quick Check

For the AP 21, 18, 15, …, what is the common difference d?

An AP has first term a = 7 and common difference d = 3. What is its 8th term?

Which formula gives the sum of the first n terms of an AP when you know a, d and n?

Using the reverse-and-add trick, each of the n columns of (S written forwards) + (S written backwards) adds up to:

Practice Problems

Easy

easy

Find the common difference and the next two terms of the AP −1.2, −3.2, −5.2, −7.2, …

easy

Which term of the AP 3, 8, 13, 18, … is 78?

Medium

medium

How many two-digit numbers are divisible by 3?

medium

The 17th term of an AP exceeds its 10th term by 7. Find the common difference.

medium

A sum of ₹1000 is invested at 8% simple interest per year. Do the yearly interest amounts form an AP? Find the interest at the end of 30 years.

Challenge

challenge

In a flower bed there are 23 rose plants in the first row, 21 in the second, 19 in the third, and so on, down to 5 in the last row. How many rows are there?

challenge

If the sum of the first 14 terms of an AP is 1050 and its first term is 10, find the 20th term.

challenge

The sum of the first n terms of an AP is given by Sₙ = 4n − n². Find the first term, the second term, and the nth term.

Summary

You should now be able to explain:

  • An AP is a list where each term is the previous one plus a fixed common difference d; d can be positive, negative or zero. General form: a, a + d, a + 2d, ….
  • To test a list, check that aₖ₊₁ − aₖ is the same for every k — always subtracting the earlier term from the later one.
  • The nth term is aₙ = a + (n − 1)d, because reaching the nth term means adding d a total of (n − 1) times (the first term needs no addition).
  • The sum of the first n terms is Sₙ = n/2 [2a + (n − 1)d] = n/2 (a + l), proved by writing the sum, reversing it, and adding — every column totals (a + l), and there are n columns, so 2S = n(a + l).
  • Use n/2 (a + l) when you know the last term l; use n/2 [2a + (n − 1)d] when you know a, d and n.
  • n must be a positive integer — a fractional n means the value is not a term / the situation is impossible.
  • Handy links: l = a + (n − 1)d for the last term, and aₙ = Sₙ − Sₙ₋₁.

What’s Next

You’ve been working with numbers in a line. Next, in Triangles, the focus shifts to shape and proportion: when are two triangles the same shape (similar), what equal ratios of sides that forces, and the powerful results — like the Basic Proportionality Theorem and the conditions for similarity — that follow. The careful “spot the rule, then prove it” thinking you used here carries straight over into geometry.