📌 Snapshot
- A sequence is an ordered list (a function on the natural numbers) and a series is the sum of its terms, written compactly using sigma notation (NCERT §8.2–§8.3).
- A Geometric Progression has a constant ratio, general term
a_n = ar^(n-1), and sumS_n = a(r^n − 1)/(r − 1)forr ≠ 1(NCERT §8.4.1–§8.4.2). - The Geometric Mean of two positive numbers is
√(ab); to insertnGMs between two positive numbers user = (b/a)^(1/(n+1))(NCERT §8.4.3). - It proves the inequality A.M. ≥ G.M. for two positive numbers using
(√a − √b)² ≥ 0(NCERT §8.5). - CUET regularly tests direct application: finding
nth term/sum of a GP, inserting GMs, and using the AM–GM relationship to recover the two numbers.
📖 Detailed Notes
2.1 Core concepts
- A sequence is an ordered list of numbers
a_1, a_2, a_3, …, a_n, …; subscripts denote position anda_nis called the general term ornth term (NCERT §8.2, p. 137). The word "sequence" emphasises order; rearranging the terms generally produces a different sequence. - A sequence with a finite number of terms is a finite sequence; otherwise it is an infinite sequence. Example: ancestors over 10 generations 2, 4, 8, …, 1024 is finite; the successive quotients 3, 3.3, 3.33, … in dividing 10 by 3 form an infinite sequence (NCERT §8.2, p. 136–137).
- Terms of a sequence need not follow a closed formula. Sometimes they are defined by a recurrence relation, e.g. the Fibonacci sequence
a_1 = a_2 = 1,a_n = a_(n−1) + a_(n−2)forn > 2; primes 2, 3, 5, 7, … have no formula at all (NCERT §8.2, p. 136–137). Both are valid sequences's sense. - A sequence can be regarded as a function whose domain is the set of natural numbers (or a subset of it); sometimes
a(n)is used in place ofa_n(NCERT §8.2, p. 137). This functional view is what makes sequences amenable to calculus (limits, convergence) in Class XII and beyond. - A series associated with a sequence
a_1, a_2, …, a_n, …is the expressiona_1 + a_2 + … + a_n + …. It is finite or infinite according to the parent sequence, and is written compactly asΣ_(k=1)^n a_kusing the Greek letter sigma (NCERT §8.3, p. 137). - The word series refers to the indicated sum, not to the sum itself; for example
1 + 3 + 5 + 7is a four-term series whose sum is 16 (NCERT §8.3, Remark, p. 137). CUET sometimes asks "write the series" — meaning write the indicated sum, not just the value. - A sequence
a_1, a_2, …is a Geometric Progression (G.P.) if each term is non-zero anda_(k+1)/a_k = r(constant) fork ≥ 1;ais the first term andrthe common ratio, so the GP isa, ar, ar², ar³, …(NCERT §8.4, p. 139). The common ratio can be positive, negative, or a non-zero fraction, but never 0 (else the sequence terminates). - General term of a GP:
a_n = ar^(n−1). A finite GP isa, ar, …, ar^(n−1); an infinite GP isa, ar, ar², …, ar^(n−1), …(NCERT §8.4.1, p. 140). The exponent of r isn − 1, not n — the single most common student error. - Sum to n terms of a GP: If
r = 1,S_n = na. Ifr ≠ 1,S_n = a(r^n − 1)/(r − 1), equivalentlya(1 − r^n)/(1 − r), derived by subtractingrS_nfromS_n(NCERT §8.4.2, p. 140). The "easier" form depends on whether|r| > 1or|r| < 1; both are algebraically identical. - Standard worked examples that CUET mirrors: ancestors over 10 generations 2 + 4 + 8 + … + 2¹⁰ = 2046 (Example 11, p. 143); bacteria doubling every hour; quarterly bank interest. The pattern is always to identify a, r, n and plug into the sum formula.
- Geometric Mean (G.M.) of two positive numbers
aandbis√(ab). Three numbersa, G, bare in GP iffG = √(ab); e.g. G.M. of 2 and 8 is 4, and 2, 4, 8 is a GP (NCERT §8.4.3, p. 143). G.M. is undefined (or complex) if either of a, b is negative. - Inserting n GMs between a and b: If
G_1, G_2, …, G_nlie between positive numbersaandbso thata, G_1, G_2, …, G_n, bis a GP, thenbis the(n+2)th term:b = ar^(n+1), givingr = (b/a)^(1/(n+1)); the GMs areG_k = a(b/a)^(k/(n+1))(NCERT §8.4.3, p. 143). The total number of terms is n + 2 because a and b are also part of the GP. - Relationship A.M. ≥ G.M.: For two positive numbers
a, b, letA = (a+b)/2andG = √(ab). ThenA − G = (a + b − 2√(ab))/2 = (√a − √b)²/2 ≥ 0, henceA ≥ G(NCERT §8.5, p. 144). Equality holds iff√a = √b, i.e.a = b. The inequality generalises to n positive numbers (n-variable AM-GM), but the NCERT chapter restricts to two. - Arithmetic-progression material (covered in Class X) and the convergence of infinite GPs are out of scope here (sum-to-infinity
S∞ = a/(1 − r)for|r| < 1is in the older syllabus and may appear as Misc. Exercise but is not central in the 2026-27 edition).
2.2 Definitions to memorise
| Term | Definition | Page |
|---|---|---|
| Sequence | Ordered arrangement of numbers a_1, a_2, …; a function on N |
136–137 |
| General (nth) term | The number a_n at the nth position |
136 |
| Finite sequence | Sequence with finitely many terms | 137 |
| Infinite sequence | Sequence that is not finite | 137 |
| Fibonacci sequence | a_1 = a_2 = 1; a_n = a_(n−1) + a_(n−2) for n > 2 |
136 |
| Recurrence relation | Equation defining a_n from earlier terms |
136 |
| Series | Sum a_1 + a_2 + … + a_n + … |
137 |
| Sigma notation | Σ_(k=1)^n a_k = a_1 + a_2 + … + a_n |
137 |
| Finite series | Series associated with a finite sequence | 137 |
| Infinite series | Series associated with an infinite sequence | 137 |
| G.P. | Non-zero sequence with constant ratio r = a_(k+1)/a_k |
139 |
First term a of GP |
The number a_1 |
139 |
Common ratio r |
Constant ratio between consecutive terms | 139 |
| General term of GP | a_n = ar^(n−1) |
140 |
| Finite GP | a, ar, …, ar^(n−1) |
140 |
| Infinite GP | a, ar, ar², … |
140 |
| Sum of n terms (r ≠ 1) | S_n = a(r^n − 1)/(r − 1) |
140 |
| Sum of n terms (r = 1) | S_n = na |
140 |
| Geometric Mean (G.M.) | G = √(ab) for a, b > 0 |
143 |
| Three terms in GP | a, G, b in GP iff G² = ab |
143 |
| Common ratio inserting n GMs | r = (b/a)^(1/(n+1)) |
143 |
| Insert n GMs (k-th) | G_k = a (b/a)^(k/(n+1)) |
143 |
| Arithmetic Mean | A = (a + b)/2 |
144 |
| A.M.–G.M. inequality | (a + b)/2 ≥ √(ab) for a, b > 0 |
144 |
| Equality condition | A.M. = G.M. iff a = b | 144 |
| Sigma identity | Sum compactly written with Σ; index begins at 1 unless stated | 137 |
2.3 Diagrams / processes to remember
- Portrait of Fibonacci (1175–1250) appears alongside the introduction (NCERT §8.1, p. 135). Sequences and series model real-world growth and decay despite their abstract appearance.
- Two-step derivation of the GP sum (NCERT §8.4.2, p. 140): (i) write
S_n = a + ar + … + ar^(n−1); (ii) multiply byrto getrS_n = ar + ar² + … + ar^n; subtract the first from the second to obtain(r − 1)S_n = a(r^n − 1). Memorise the derivation: CUET sometimes asks for a sketch of it as a statement-correctness MCQ. - The algebraic identity
A − G = (√a − √b)²/2, which makes the AM–GM inequality visible at one glance (NCERT §8.5, p. 144). The square is non-negative ⇒ A − G ≥ 0 ⇒ A ≥ G. - Worked Example 11 (ancestors):
a = 2, r = 2, n = 10, soS_10 = 2(2¹⁰ − 1) = 2046, illustrating a real-life GP sum (NCERT §8.4.2, p. 143). This is the prototype for every "doubling over n periods" question. - Process — identify GP, then plug: (i) Read first term
aand common ratiorfrom the sequence. (ii) Decide whether the question asks fora_n(use general term) orS_n(use sum formula). (iii) Substitute and simplify; check whetherr = 1to avoid division by zero. - Process — insert n GMs: (i) Treat a and b as the first and
(n+2)-th terms of a GP with n+1 ratios in between. (ii) Computer = (b/a)^(1/(n+1)). (iii) The k-th GM isa · r^k. - Process — find two numbers from A.M., G.M.: Given A and G, use
a + b = 2Aandab = G². Then a, b are roots oft² − 2A t + G² = 0. Discriminant4A² − 4G² ≥ 0is guaranteed by AM-GM.
2.4 Common confusions / NTA trap points
- Sigma notation vs. value. A series is the indicated sum, not the number that results.
1 + 3 + 5 + 7is the series; 16 is its sum (NCERT §8.3 Remark, p. 137). NTA exploits this by asking what the "series" is. nth term off-by-one. In a GP,a_n = ar^(n−1), notar^n. Students who writea_10 = ar^10lose marks on direct questions (NCERT §8.4.1, p. 140).- Wrong sum formula when
r = 1.S_n = a(r^n − 1)/(r − 1)is undefined whenr = 1; in that caseS_n = na(NCERT §8.4.2, p. 140). A common trap option isn·apaired with ther ≠ 1formula in the same MCQ. - G.M. sign. G.M. of two positive numbers is the positive square root
√(ab)(NCERT §8.4.3, p. 143). When inserting GMs the common ratio may admit two real values (e.g.r = ±4between 1 and 256), but the definition of GM picks the positive root. - A.M. ≥ G.M. holds only for positive numbers. The proof relies on
(√a − √b)², which needsa, b > 0(NCERT §8.5, p. 144). For mixed-sign numbers the inequality may reverse or be undefined. - GP requires non-zero terms. A sequence with a zero term is excluded from being a GP because the ratio
a_(k+1)/a_kwould be undefined (NCERT §8.4, p. 139). - Confusing AP and GP general terms. AP:
a_n = a + (n − 1)d. GP:a_n = a · r^(n−1). The structural difference is addition vs. multiplication. - Mis-counting inserted means. Inserting n GMs between a and b gives a GP with
n + 2terms total. Many students treat the count as n + 1. - Mistaking G.M. for the average of GMs. G.M. of a and b is
√(ab), not(√a + √b)/2. - Mis-applying sum formula to infinite GP. The finite-sum formula
S_nis unchanged; the limit as n → ∞ requires|r| < 1and isa/(1 − r). - Forgetting domain restrictions for n. n is a positive integer; sums like
S_0orS_{−1}are not defined. - Misreading common ratio. In 8, 4, 2, 1, …,
r = 1/2, not 2. Read direction carefully. - Confusing exponent base.
a · 4^(n−1) = …anda · 2^(n−1) = …produce different n's; identify r correctly before solving. - Treating G.M. as signed. Even if a, b satisfy
ab > 0while both being negative, G.M. is defined in NCERT only for positive a, b. - Off-by-one in inserting means. Common-ratio formula
r = (b/a)^(1/(n+1))has denominatorn + 1, notn— corresponding to the n + 1 gaps between n + 2 terms. - Equating sum of GP to product.
S_nis a sum, not a product of terms; the product of n GP terms is(a · ar^(n−1))^(n/2)(geometric structure, not in the syllabus but a common distractor).
2.5 Key formulas & theorems
| Formula | Statement | NCERT page |
|---|---|---|
| Sequence | Function from N to R, written a_n |
137 |
| Series | a_1 + a_2 + … + a_n + … |
137 |
| Sigma notation | Σ_(k=1)^n a_k |
137 |
| Fibonacci recurrence | a_n = a_(n−1) + a_(n−2), a_1 = a_2 = 1 |
136 |
| GP definition | a_(k+1)/a_k = r (constant) |
139 |
| nth term of GP | a_n = a r^(n−1) |
140 |
| Sum of n GP terms (r ≠ 1) | S_n = a(r^n − 1)/(r − 1) |
140 |
| Sum of n GP terms (r = 1) | S_n = n a |
140 |
| Alternate sum form | S_n = a(1 − r^n)/(1 − r) |
140 |
| Geometric mean | G = √(ab) |
143 |
| 3 terms in GP test | G² = ab |
143 |
| Common ratio for n GMs | r = (b/a)^(1/(n+1)) |
143 |
| k-th inserted GM | G_k = a(b/a)^(k/(n+1)) |
143 |
| Arithmetic mean | A = (a + b)/2 |
144 |
| AM ≥ GM | (a + b)/2 ≥ √(ab) |
144 |
| Equality condition | A = G iff a = b | 144 |
| A − G formula | A − G = (√a − √b)²/2 |
144 |
| Two numbers from A, G | Roots of t² − 2At + G² = 0 |
144 |
| Sum of ancestors GP | S_10 = 2(2¹⁰ − 1) = 2046 |
143 |
| GP product property | If a, b, c in GP, then b² = ac | 139 |
| Common ratio range | r ≠ 0 (else GP terminates) | 139 |
| GP doubling | a = 1, r = 2 ⇒ a_n = 2^(n−1) |
140 |
| GP halving | r = 1/2 ⇒ a_n = a/2^(n−1) |
140 |
| Number of terms inserted | a, G_1, …, G_n, b ⇒ n + 2 total | 143 |
| Sigma over constant | Σ_(k=1)^n c = n c |
137 |
2.6 Solved examples (NCERT-grounded)
Example A (NCERT Example 4, p. 140). Find the 10th term of the GP 5, 25, 125, …
Step 1 — identify a, r: a = 5, r = 25/5 = 5. Step 2 — apply general term: a_10 = a · r⁹ = 5 · 5⁹ = 5¹⁰. Step 3 — answer: 5¹⁰ (≈ 9 765 625).
Example B (NCERT Example 5, p. 141). Which term of the GP 2, 8, 32, … equals 131072?
Step 1 — identify a, r: a = 2, r = 8/2 = 4. Step 2 — set up equation: 2 · 4^(n−1) = 131072 ⇒ 4^(n−1) = 65536. Step 3 — solve: 4⁸ = 65536, so n − 1 = 8 ⇒ n = 9. Answer: 9th term.
Example C (NCERT Example 11, p. 143). Find the sum of ancestors over 10 generations (parents, grandparents, …).
Step 1 — model: GP with a = 2 (parents), r = 2 (each generation doubles), n = 10. Step 2 — apply sum formula: S_10 = 2(2¹⁰ − 1)/(2 − 1) = 2(1024 − 1) = 2 · 1023. Step 3 — answer: S_10 = 2046 ancestors.
Example D (NCERT Example 12, p. 144). Insert three numbers between 1 and 256 to form a GP with positive ratio.
Step 1 — model: 1, G_1, G_2, G_3, 256 is a 5-term GP, so 256 = 1 · r⁴. Step 2 — solve for r: r⁴ = 256 ⇒ r = 4 (positive root). Step 3 — compute means: G_1 = 4, G_2 = 16, G_3 = 64. Answer: 4, 16, 64.
Example E (NCERT Example 13, p. 144–145). Find two positive numbers whose A.M. is 10 and G.M. is 8.
Step 1 — write system: a + b = 20; ab = 64. Step 2 — form quadratic: a, b are roots of t² − 20t + 64 = 0; discriminant = 400 − 256 = 144. Step 3 — solve: t = (20 ± 12)/2 = 16 or 4. Answer: 4 and 16.
🎯 Practice MCQs
First 3 questions free · create a free account to unlock the rest — answers & explanations included, no payment needed
Q1. A sequence is best described as
▸ Show answer & explanation
Answer: B
Order matters; functional view is explicit in §8.2.
Q2. The Fibonacci sequence is
▸ Show answer & explanation
Answer: C
NCERT's exact definition.
Q3. The nth term of GP `a, ar, ar², …` is
▸ Show answer & explanation
Answer: C
Standard formula; exponent is n − 1.
🔒 9 more practice MCQs
Create a free account to unlock every MCQ in this chapter — answers and explanations included. No payment needed.
Already registered? Just log in and they'll all appear here.
Q4. The 10th term of the GP 5, 25, 125, … is
▸ Show answer & explanation
Answer: B
a_10 = 5 · 5⁹ = 5¹⁰.
Q5. Sum of first n terms of a GP with first term a and common ratio r ≠ 1 is
▸ Show answer & explanation
Answer: C
Derived via S − rS = a(1 − r^n).
Q6. Which term of 2, 8, 32, … equals 131072?
▸ Show answer & explanation
Answer: B
4^(n−1) = 65536 = 4⁸ ⇒ n = 9.
Q7. Inserting three numbers between 1 and 256 to form GP (positive ratio):
▸ Show answer & explanation
Answer: B
r⁴ = 256 ⇒ r = 4.
Q8. G.M. of two positive numbers a, b is
▸ Show answer & explanation
Answer: B
Definition; (A) is A.M.; (C) is harmonic mean.
Q9. For positive a, b with A.M. A and G.M. G,
▸ Show answer & explanation
Answer: C
A − G = (√a − √b)²/2 ≥ 0.
Q10. Two positive numbers with A.M. = 10 and G.M. = 8 are
▸ Show answer & explanation
Answer: B
t² − 20t + 64 = 0 ⇒ t = 4, 16.
Q11. If GP is 8, 4, 2, 1, …, then common ratio is
▸ Show answer & explanation
Answer: B
r = 4/8 = 1/2.
Q12. Sum of GP `a, ar, ar², …, ar^(n−1)` when r = 1 is
▸ Show answer & explanation
Answer: C
Each term equals a; n terms sum to na.
📊 Previous-Year Questions
Practise with real CUET Mathematics previous-year papers — every question solved, with the correct answer and a step-by-step explanation.
View solved CUET PYQ papers →Ready to drill Mathematics?
Unlock all MCQs, chapter tests, mocks & PYQs for ₹199/year.
Get UniDrill Pro