NDA Maths · Sequence & Series

Arithmetic Progressions — the constant-difference engine

A list of numbers where each term is the one before it plus a fixed step — so the nth term and the running total both have clean formulas.

Why this matters

The single biggest section of the chapter — 42 PYQs across 2017–2026, almost all EASY or MODERATE. NDA tests four things over and over: the nth term and sum, recovering the AP from a given sum-formula, the symmetric-term and mean tricks, and a handful of elegant identities (sum of m terms = n, sum of n terms = m, and the like). Learn the eight concepts below and you bank four to six marks on sight, every paper.

Concept 1 of 9

Sequence, series, and the nth term

Intuition

A sequence is just an ordered list of numbers; a series is what you get when you add a sequence up. The whole chapter is about two questions: what is the term sitting in position nn (the nth term ana_n), and what is the running total of the first nn terms (the sum SnS_n)? Everything else is a special pattern of those two.

Definition

A sequence a1,a2,a3,a_1, a_2, a_3, \ldots lists terms by position; ana_n (also written TnT_n) is the nth term or general term. A series is the sum a1+a2++ana_1 + a_2 + \cdots + a_n, written compactly as Sn=k=1nakS_n = \sum_{k=1}^{n} a_k. Two bridges connect them:

  • Sn=a1+a2++anS_n = a_1 + a_2 + \cdots + a_n (add up the first nn terms).
  • an=SnSn1a_n = S_n - S_{n-1} for n2n \ge 2, and a1=S1a_1 = S_1 (each term is the jump in the running total).

The two bridges between term and sum

an=SnSn1(n2),a1=S1a_n = S_n - S_{n-1}\quad (n \ge 2), \qquad a_1 = S_1

Worked example

A sequence has an=4n1a_n = 4n - 1. Write its first four terms and find S4S_4.
  1. Substitute n=1,2,3,4n = 1,2,3,4: a1=3, a2=7, a3=11, a4=15a_1 = 3,\ a_2 = 7,\ a_3 = 11,\ a_4 = 15.
  2. The series is 3+7+11+153 + 7 + 11 + 15.
  3. Add: S4=36S_4 = 36.
Answer:Terms 3,7,11,153, 7, 11, 15; S4=36S_4 = 36.
Practice this concept4 quick reps

Concept 2 of 9

nth term and sum of an AP

Intuition

In an AP every step is the same size — the common difference dd. So the nth term is the first term plus (n1)(n-1) steps, and the sum is just the number of terms times the average of the first and last term (the average is the midpoint because the terms are evenly spaced).

Definition

An arithmetic progression has first term aa and common difference d=ak+1akd = a_{k+1} - a_k (constant). Then:

  • nth term: an=a+(n1)da_n = a + (n-1)d.
  • **Sum of nn terms:** Sn=n2[2a+(n1)d]=n2(a+l)S_n = \dfrac{n}{2}\,[\,2a + (n-1)d\,] = \dfrac{n}{2}(a + l), where l=anl = a_n is the last term.

The n2(a+l)\tfrac{n}{2}(a+l) form is fastest whenever you can see the first and last terms.

nth term and sum

an=a+(n1)d,Sn=n2[2a+(n1)d]=n2(a+l)a_n = a + (n-1)d, \qquad S_n = \frac{n}{2}\,[\,2a + (n-1)d\,] = \frac{n}{2}(a + l)
  • aafirst term
  • ddcommon difference
  • lllast term ana_n

Worked example

Find the sum of all two-digit multiples of 7.
  1. The terms are 14,21,28,,9814, 21, 28, \ldots, 98: an AP with a=14, d=7, l=98a = 14,\ d = 7,\ l = 98.
  2. Number of terms: n=98147+1=12+1=13n = \dfrac{98 - 14}{7} + 1 = 12 + 1 = 13.
  3. Sum =n2(a+l)=132(14+98)=132×112=13×56= \dfrac{n}{2}(a + l) = \dfrac{13}{2}(14 + 98) = \dfrac{13}{2}\times 112 = 13 \times 56.
Answer:728728.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 2Sequence & SeriesEASY
The sum of all the two-digit odd numbers is

[Q21 · Apr · 2017]

The nth term uses (n1)d(n-1)d, not ndnd

The first term already sits at position 1 with zero steps taken, so reaching position nn needs (n1)(n-1) steps: an=a+(n1)da_n = a + (n-1)d. Writing a+nda + nd overshoots by one full step. For 2,5,8,2, 5, 8, \ldots the 10th term is 2+9(3)=292 + 9(3) = 29, not 2+10(3)=322 + 10(3) = 32.

The sum has (n1)d(n-1)d inside the bracket

The sum is Sn=n2[2a+(n1)d]S_n = \tfrac{n}{2}[\,2a + (n-1)d\,] — the same (n1)(n-1) off-by-one lives inside. A frequent slip is n2[2a+nd]\tfrac{n}{2}[\,2a + nd\,]. For 3,7,11,3, 7, 11, \ldots the sum of 20 terms is 202[6+19(4)]=820\tfrac{20}{2}[6 + 19(4)] = 820, not 202[6+20(4)]=860\tfrac{20}{2}[6 + 20(4)] = 860.

Concept 3 of 9

Recovering the term from a sum-formula

Intuition

When the question hands you SnS_n as a formula in nn (often a quadratic), you do not need to find aa and dd first. The term in position nn is simply the jump in the running total: an=SnSn1a_n = S_n - S_{n-1}. If SnS_n is a quadratic in nn, the sequence is automatically an AP and ana_n comes out linear in nn.

Definition

Given SnS_n as a function of nn, the nth term is an=SnSn1a_n = S_n - S_{n-1}. A quadratic Sn=An2+BnS_n = An^2 + Bn (no constant term) always describes an AP with common difference 2A2A and first term A+BA + B. A non-zero constant term means the very first term breaks the pattern (use a1=S1a_1 = S_1 separately).

Term from sum

an=SnSn1(n2)a_n = S_n - S_{n-1}\quad (n \ge 2)

Worked example

The sum of the first nn terms of an AP is Sn=2n2+3nS_n = 2n^2 + 3n. Find its nth term.
  1. an=SnSn1=(2n2+3n)[2(n1)2+3(n1)]a_n = S_n - S_{n-1} = (2n^2 + 3n) - \big[\,2(n-1)^2 + 3(n-1)\,\big].
  2. Expand 2(n1)2+3(n1)=2n24n+2+3n3=2n2n12(n-1)^2 + 3(n-1) = 2n^2 - 4n + 2 + 3n - 3 = 2n^2 - n - 1.
  3. Subtract: an=(2n2+3n)(2n2n1)=4n+1a_n = (2n^2 + 3n) - (2n^2 - n - 1) = 4n + 1.
Answer:an=4n+1a_n = 4n + 1.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 3Sequence & SeriesEASY
The sum of the first nn terms of an AP is 3n2+5n3n^2+5n. If the mthm^{\text{th}} term of the AP is 68, then what is the value of mm?

[Q6 · Apr · 2026]

Concept 4 of 9

The arithmetic mean and symmetric terms

Intuition

Three numbers in AP have their middle term equal to the average of the outer two — that is the arithmetic mean. When a problem gives you the sum of an even spread of terms, choosing them symmetrically about a centre (ad,a,a+da - d, a, a + d for three; a3d,ad,a+d,a+3da - 3d, a - d, a + d, a + 3d for four) makes the unknowns cancel and the sum collapse to a single variable.

Definition

The arithmetic mean of aa and bb is a+b2\dfrac{a + b}{2}; inserting it between them makes three terms in AP. Two symmetry facts solve most AP word-problems:

  • Equidistant terms sum to a constant: ak+an+1k=a1+ana_k + a_{n+1-k} = a_1 + a_n for every kk.
  • Symmetric choice: pick 3 unknown terms as ad, a, a+da-d,\ a,\ a+d and 4 as a3d, ad, a+d, a+3da-3d,\ a-d,\ a+d,\ a+3d — then the sum gives aa immediately.

Arithmetic mean of a and b

AM=a+b2\text{AM} = \frac{a + b}{2}

Worked example

Three numbers are in AP with sum 15 and product 80. Find the numbers.
  1. Take the three terms as ad, a, a+da - d,\ a,\ a + d.
  2. Sum: (ad)+a+(a+d)=3a=15a=5(a-d) + a + (a+d) = 3a = 15 \Rightarrow a = 5.
  3. Product: (5d)(5)(5+d)=5(25d2)=8025d2=16d2=9d=3(5-d)(5)(5+d) = 5(25 - d^2) = 80 \Rightarrow 25 - d^2 = 16 \Rightarrow d^2 = 9 \Rightarrow d = 3.
Answer:The numbers are 2,5,82, 5, 8.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 4Sequence & SeriesEASY
pp, qq, rr and ss are in AP such that p+s=8p+s=8 and qr=15qr=15. What is the difference between largest and smallest numbers?

[Q26 · Apr · 2023]

Inserting kk means makes k+1k+1 gaps, not kk

Putting kk arithmetic means between aa and bb builds a (k+2)(k+2)-term AP, which has k+1k+1 equal steps between the endpoints — so the common difference is d=bak+1d = \dfrac{b-a}{k+1}, NOT bak\dfrac{b-a}{k}. Inserting 3 means between 2 and 14 gives d=124=3d = \tfrac{12}{4} = 3 (means 5,8,115, 8, 11), not 123=4\tfrac{12}{3} = 4.

Concept 5 of 9

The three-term condition and what preserves an AP

Intuition

Three numbers are in AP exactly when the middle is the average of the other two — equivalently, twice the middle equals the sum of the ends. And an AP stays an AP if you add a constant to every term, or multiply every term by a (non-zero) constant: those operations just shift or rescale the common difference. Squaring or taking reciprocals does NOT preserve it.

Definition

Numbers a,b,ca, b, c are in AP     2b=a+c\iff 2b = a + c. Operations that keep an AP an AP (they map a constant difference to a constant difference):

  • adding/subtracting a constant kk: a+k, b+k, c+ka+k,\ b+k,\ c+k (or ka, kb, kck-a,\ k-b,\ k-c);
  • multiplying/dividing by a non-zero constant kk: ka, kb, kcka,\ kb,\ kc and ak, bk, ck\tfrac{a}{k},\ \tfrac{b}{k},\ \tfrac{c}{k}.

Squaring the terms or taking reciprocals generally breaks the AP.

Three terms in AP

a, b, c in AP    2b=a+ca,\ b,\ c \text{ in AP} \iff 2b = a + c

Worked example

For what value of kk are k1, 2k, 7k - 1,\ 2k,\ 7 in arithmetic progression?
  1. Apply 2b=a+c2b = a + c with b=2k, a=k1, c=7b = 2k,\ a = k-1,\ c = 7.
  2. 2(2k)=(k1)+74k=k+62(2k) = (k - 1) + 7 \Rightarrow 4k = k + 6.
  3. 3k=6k=23k = 6 \Rightarrow k = 2. (Check: terms become 1,4,71, 4, 7 — an AP with d=3d = 3.)
Answer:k=2k = 2.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 5Sequence & SeriesEASY
If x2,x,8x^2, x, -8 are in AP, then which one of the following is correct?

[Q52 · Apr · 2021]

Squaring breaks the AP

If a,b,ca, b, c are in AP it does NOT follow that a2,b2,c2a^2, b^2, c^2 are in AP, nor that 1a,1b,1c\tfrac1a, \tfrac1b, \tfrac1c are. Only adding a constant or scaling by a constant is safe. Test with 1,2,31, 2, 3: the squares 1,4,91, 4, 9 are not in AP (241+92\cdot4 \ne 1 + 9).

Concept 6 of 9

Ratio of sums and ratio of terms

Intuition

Two AP facts get tangled here. First, if the ratio of the sum of pp terms to the sum of qq terms is given, cross-multiplying turns it into a relation between aa and dd. Second — the time-saver — when a problem gives the ratio of the sums of two different APs as a formula, the ratio of their nth terms is found by replacing the term-count with 2n12n - 1.

Definition

For one AP, SpSq=p[2a+(p1)d]q[2a+(q1)d]\dfrac{S_p}{S_q} = \dfrac{p[\,2a + (p-1)d\,]}{q[\,2a + (q-1)d\,]}; a given value forces a relation between aa and dd. For two APs with SnSn=f(n)g(n)\dfrac{S_n}{S_n'} = \dfrac{f(n)}{g(n)}, the ratio of nth terms is

anan=f(2n1)g(2n1),\frac{a_n}{a_n'} = \frac{f(2n-1)}{g(2n-1)},
because the nth term equals the average of the first 2n12n-1 terms (the middle one), so an=S2n12n1a_n = \tfrac{S_{2n-1}}{2n-1} and the (2n1)(2n-1) cancels in the ratio.

Ratio of nth terms from ratio of sums

anan=f(2n1)g(2n1)whenSnSn=f(n)g(n)\frac{a_n}{a_n'} = \frac{f(2n-1)}{g(2n-1)}\quad\text{when}\quad \frac{S_n}{S_n'} = \frac{f(n)}{g(n)}

Worked example

The ratio of the sums of the first nn terms of two APs is (3n+1):(2n+7)(3n + 1) : (2n + 7). Find the ratio of their 9th terms.
  1. Replace nn by 2n12n - 1; for the 9th term, 2(9)1=172(9) - 1 = 17.
  2. Numerator: 3(17)+1=523(17) + 1 = 52. Denominator: 2(17)+7=412(17) + 7 = 41.
  3. So the ratio of 9th terms is 52:4152 : 41.
Answer:52:4152 : 41.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 6Sequence & SeriesMODERATE
In an AP, the ratio of the sum of the first pp terms to the sum of the first qq terms is p2:q2p^2:q^2. Which one of the following is correct?

[Q38 · Sep · 2024]

Concept 7 of 9

The clever AP identities

Intuition

A cluster of NDA favourites look hard but fall to one move: write the condition with Sn=n2[2a+(n1)d]S_n = \tfrac{n}{2}[2a + (n-1)d] or an=a+(n1)da_n = a + (n-1)d, then let the symmetry do the work. Three recur: sum of mm terms =n= n and sum of nn terms =m= m gives Sm+n=(m+n)S_{m+n} = -(m+n); pap=qaqp\,a_p = q\,a_q gives ap+q=0a_{p+q} = 0; and equal sums Sp=SqS_p = S_q give Sp+q=0S_{p+q} = 0.

Definition

Memorable consequences (each provable in two lines):

  • If Sm=nS_m = n and Sn=mS_n = m (with mnm \ne n), then Sm+n=(m+n)S_{m+n} = -(m+n).
  • If pap=qaqp\,a_p = q\,a_q (with pqp \ne q), then ap+q=0a_{p+q} = 0.
  • If Sp=SqS_p = S_q (with pqp \ne q), then Sp+q=0S_{p+q} = 0.

All three come from the same idea: a linear/quadratic in the index, pinned by two conditions.

Clever AP identities

Sm=n, Sn=mSm+n=(m+n)pap=qaqap+q=0Sp=SqSp+q=0S_m = n,\ S_n = m \Rightarrow S_{m+n} = -(m+n) \qquad p\,a_p = q\,a_q \Rightarrow a_{p+q} = 0 \qquad S_p = S_q \Rightarrow S_{p+q} = 0

Worked example

In an AP, pp times the ppth term equals qq times the qqth term, with pqp \ne q. Show that the (p+q)(p+q)th term is 0.
  1. Write ap=a+(p1)da_p = a + (p-1)d and aq=a+(q1)da_q = a + (q-1)d.
  2. Condition: p[a+(p1)d]=q[a+(q1)d]p\,[a + (p-1)d] = q\,[a + (q-1)d].
  3. Expand: pa+p(p1)d=qa+q(q1)d(pq)a+[p(p1)q(q1)]d=0pa + p(p-1)d = qa + q(q-1)d \Rightarrow (p - q)a + [p(p-1) - q(q-1)]d = 0.
  4. Now p(p1)q(q1)=(pq)(p+q1)p(p-1) - q(q-1) = (p-q)(p+q-1), so dividing by (pq)(p - q): a+(p+q1)d=0a + (p+q-1)d = 0.
  5. That left side is exactly ap+qa_{p+q}.
Answer:ap+q=0a_{p+q} = 0.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 7Sequence & SeriesMODERATE
If the sum of mm terms of an AP is nn and the sum of nn terms is mm, then the sum of (m+n)(m+n) terms is

[Q10 · Apr · 2017]

Concept 8 of 9

Counting sums, alternating signs, and the first negative term

Intuition

Two AP-flavoured shapes show up that aren't plain SnS_n. First, sums of numbers fitting a rule ("two-digit numbers leaving remainder 2 on division by 3") — list them, see the AP, sum it. Second, alternating sums like 12+34+1 - 2 + 3 - 4 + \cdots — pair the terms so each pair is a constant. And to find where an AP turns negative, solve an<0a_n < 0 for nn.

Definition

Rule-based counting sum: identify the qualifying numbers as an AP (first term, common difference, last term), count them, then apply Sn=n2(a+l)S_n = \tfrac{n}{2}(a+l). Alternating sum: group consecutive terms into pairs of equal value, then add the leftover. First negative term: solve a+(n1)d<0a + (n-1)d < 0 for the smallest integer nn.

Worked example

Find the value of 12+34++991001 - 2 + 3 - 4 + \cdots + 99 - 100.
  1. Pair the terms: (12)+(34)++(99100)(1 - 2) + (3 - 4) + \cdots + (99 - 100).
  2. Each of the pairs equals 1-1, and there are 100/2=50100/2 = 50 pairs.
  3. Total =50×(1)=50= 50 \times (-1) = -50.
Answer:50-50.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 8Sequence & SeriesMODERATE
What is the sum of all two-digit numbers which when divided by 3 leave 2 as remainder?

[Q31 · Apr · 2018]

Concept 9 of 9

Common terms of two APs

Intuition

The numbers that appear in BOTH of two APs themselves form an AP. Its first term is the first value common to both; its common difference is the LCM of the two original common differences (the spacing at which the two sequences re-align).

Definition

If AP1_1 has common difference d1d_1 and AP2_2 has d2d_2, their common terms form an AP with common difference lcm(d1,d2)\operatorname{lcm}(d_1, d_2), starting at the first shared value. To count them, take the new AP up to the smaller of the two last terms and apply n=Lalcm(d1,d2)+1n = \big\lfloor \tfrac{L - a}{\operatorname{lcm}(d_1,d_2)} \big\rfloor + 1, where aa is the first common term and LL is the largest value not exceeding either list's last term.

Common-terms AP

dcommon=lcm(d1,d2)d_{\text{common}} = \operatorname{lcm}(d_1, d_2)

Worked example

How many terms are common to 3,7,11,,993, 7, 11, \ldots, 99 and 2,8,14,,982, 8, 14, \ldots, 98?
  1. First common value: 1111 (the first number in both lists).
  2. New common difference =lcm(4,6)=12= \operatorname{lcm}(4, 6) = 12, so common terms are 11,23,35,11, 23, 35, \ldots.
  3. Largest min(99,98)=98\le \min(99, 98) = 98 of this form is 9595; count =951112+1=7+1=8= \big\lfloor\tfrac{95-11}{12}\big\rfloor + 1 = 7 + 1 = 8.
Answer:88 common terms.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 9Sequence & SeriesMODERATE
How many terms are identical in the two APs 19,21,23,19, 21, 23, \ldots up to 110 terms and 19,22,25,28,19, 22, 25, 28, \ldots up to 75 terms?

[Q7 · Sep · 2025]

Summary — formulas & gotchas at a glance

A revision cheat-sheet for the formulas and gotchas above. Click any concept name to jump back to its full explanation.

Formulas (8)

  • Sequence, series, and the nth term

    The two bridges between term and sum

    an=SnSn1(n2),a1=S1a_n = S_n - S_{n-1}\quad (n \ge 2), \qquad a_1 = S_1
  • nth term and sum of an AP

    nth term and sum

    an=a+(n1)d,Sn=n2[2a+(n1)d]=n2(a+l)a_n = a + (n-1)d, \qquad S_n = \frac{n}{2}\,[\,2a + (n-1)d\,] = \frac{n}{2}(a + l)
  • Recovering the term from a sum-formula

    Term from sum

    an=SnSn1(n2)a_n = S_n - S_{n-1}\quad (n \ge 2)
  • The arithmetic mean and symmetric terms

    Arithmetic mean of a and b

    AM=a+b2\text{AM} = \frac{a + b}{2}
  • The three-term condition and what preserves an AP

    Three terms in AP

    a, b, c in AP    2b=a+ca,\ b,\ c \text{ in AP} \iff 2b = a + c
  • Ratio of sums and ratio of terms

    Ratio of nth terms from ratio of sums

    anan=f(2n1)g(2n1)whenSnSn=f(n)g(n)\frac{a_n}{a_n'} = \frac{f(2n-1)}{g(2n-1)}\quad\text{when}\quad \frac{S_n}{S_n'} = \frac{f(n)}{g(n)}
  • The clever AP identities

    Clever AP identities

    Sm=n, Sn=mSm+n=(m+n)pap=qaqap+q=0Sp=SqSp+q=0S_m = n,\ S_n = m \Rightarrow S_{m+n} = -(m+n) \qquad p\,a_p = q\,a_q \Rightarrow a_{p+q} = 0 \qquad S_p = S_q \Rightarrow S_{p+q} = 0
  • Common terms of two APs

    Common-terms AP

    dcommon=lcm(d1,d2)d_{\text{common}} = \operatorname{lcm}(d_1, d_2)

Watch out for (4)

Drill every past-year question on this subtopic

42 questions from the bank — paginated, with cart and Word-export support.

Related notes